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

Unified Diff: utils/archive/options.dart

Issue 10919146: Get rid of a lot of () for getters. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 3 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 | « utils/archive/input_stream.dart ('k') | utils/archive/utils.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: utils/archive/options.dart
diff --git a/utils/archive/options.dart b/utils/archive/options.dart
index 77dbb6b5b2ab9baf1872ff004a45706e5f028e93..36c9e4251260dc3b75b9d013be52a2581b6868b3 100644
--- a/utils/archive/options.dart
+++ b/utils/archive/options.dart
@@ -30,7 +30,7 @@ class ArchiveOptions {
ArchiveOptions() : _options = <String, ArchiveOption>{};
/** Returns whether any options have been set. */
- bool get isEmpty() => _options.isEmpty();
+ bool get isEmpty => _options.isEmpty();
/**
* Sets an option. [value] should either be a bool or something with a
@@ -48,5 +48,5 @@ class ArchiveOptions {
}
/** Gets all options. */
- List<ArchiveOption> get all() => _options.getValues();
+ List<ArchiveOption> get all => _options.getValues();
}
« no previous file with comments | « utils/archive/input_stream.dart ('k') | utils/archive/utils.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698