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

Unified Diff: lib/html/src/HashChangeEventWrappingImplementation.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 | « lib/html/src/HashChangeEvent.dart ('k') | lib/html/src/KeyboardEvent.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/html/src/HashChangeEventWrappingImplementation.dart
diff --git a/lib/html/src/HashChangeEventWrappingImplementation.dart b/lib/html/src/HashChangeEventWrappingImplementation.dart
index 7f67ddd4dd32e80e72815f14f03ea6c9b522403d..647a6599e50126a846415863b6700f82a88f4fa2 100644
--- a/lib/html/src/HashChangeEventWrappingImplementation.dart
+++ b/lib/html/src/HashChangeEventWrappingImplementation.dart
@@ -12,7 +12,7 @@ class HashChangeEventWrappingImplementation extends EventWrappingImplementation
return LevelDom.wrapHashChangeEvent(e);
}
- String get newURL() => _ptr.newURL;
+ String get newURL => _ptr.newURL;
- String get oldURL() => _ptr.oldURL;
+ String get oldURL => _ptr.oldURL;
}
« no previous file with comments | « lib/html/src/HashChangeEvent.dart ('k') | lib/html/src/KeyboardEvent.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698