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

Unified Diff: pkg/observe/lib/src/observable.dart

Issue 50413005: Reapply "Remove @deprecated features." (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Merge to head Created 7 years, 2 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 | « pkg/logging/test/logging_test.dart ('k') | pkg/polymer/lib/component_build.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/observe/lib/src/observable.dart
diff --git a/pkg/observe/lib/src/observable.dart b/pkg/observe/lib/src/observable.dart
index ee25819c96caa3aeda8c9cc1a4efbebd0d372912..f798f4446f46c541c25579890e93a1f8ea859a54 100644
--- a/pkg/observe/lib/src/observable.dart
+++ b/pkg/observe/lib/src/observable.dart
@@ -188,21 +188,6 @@ abstract class Observable {
}
}
-/**
- * *Deprecated* use [Observable.notifyPropertyChange] instead.
- *
- * This API should not be used as it creates a
- * [PropertyChangeRecord] without oldValue and newValue.
- *
- * Notify the property change. Shorthand for:
- *
- * target.notifyChange(new PropertyChangeRecord(target, name, null, null));
- */
-@deprecated
-void notifyProperty(Observable target, Symbol name) {
- target.notifyChange(new PropertyChangeRecord(target, name, null, null));
-}
-
// TODO(jmesserly): remove the instance method and make this top-level method
// public instead?
// NOTE: this is not exported publically.
« no previous file with comments | « pkg/logging/test/logging_test.dart ('k') | pkg/polymer/lib/component_build.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698