Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(190)

Unified Diff: pkg/serialization/lib/serialization.dart

Issue 14688020: fix for return type issue in 22524 (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/serialization/lib/serialization.dart
diff --git a/pkg/serialization/lib/serialization.dart b/pkg/serialization/lib/serialization.dart
index e484ae644953b9fb378aacebdec2fedc8c676266..c0ab0d0159d266688053a81aafa8cc97be56b712 100644
--- a/pkg/serialization/lib/serialization.dart
+++ b/pkg/serialization/lib/serialization.dart
@@ -267,7 +267,9 @@ class Serialization {
* CustomRule subclasses, in which case it requires additional setup and
* is off by default.
*/
- void set selfDescribing(bool value) => _selfDescribing = value;
+ void set selfDescribing(bool value) {
+ _selfDescribing = value;
+ }
/**
* Creates a new serialization with a default set of rules for primitives
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698