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

Unified Diff: lib/core/exceptions.dart

Issue 11233032: [core] cleanup === and !== (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 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
Index: lib/core/exceptions.dart
===================================================================
--- lib/core/exceptions.dart (revision 13856)
+++ lib/core/exceptions.dart (working copy)
@@ -126,7 +126,7 @@
class NotImplementedException implements Exception {
const NotImplementedException([String message]) : this._message = message;
- String toString() => (this._message !== null
+ String toString() => (this._message != null
? "NotImplementedException: $_message"
: "NotImplementedException");
final String _message;
« no previous file with comments | « lib/core/errors.dart ('k') | lib/core/expect.dart » ('j') | lib/core/expect.dart » ('J')

Powered by Google App Engine
This is Rietveld 408576698