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

Unified Diff: pkg/analyzer_experimental/lib/src/generated/java_core.dart

Issue 14205011: Issue 9845. Compare runtime types using ==. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 8 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: pkg/analyzer_experimental/lib/src/generated/java_core.dart
diff --git a/pkg/analyzer_experimental/lib/src/generated/java_core.dart b/pkg/analyzer_experimental/lib/src/generated/java_core.dart
index 75d9d1ffd526a2006ec8314b7963f34ca2a1844c..0c40a7e867d9c80e0a0325b580ca5fff8e470570 100644
--- a/pkg/analyzer_experimental/lib/src/generated/java_core.dart
+++ b/pkg/analyzer_experimental/lib/src/generated/java_core.dart
@@ -176,13 +176,13 @@ String _printf(String fmt, List args) {
abstract class PrintWriter {
void print(x);
- void println() {
+ void newLine() {
this.print('\n');
}
- void printlnObject(String s) {
+ void println(String s) {
this.print(s);
- this.println();
+ this.newLine();
}
void printf(String fmt, List args) {

Powered by Google App Engine
This is Rietveld 408576698