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

Unified Diff: client/fling/src/java/core/com/google/dart/fling/Fling.java

Issue 8447006: Fling: Fix bit rot. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: total Created 9 years, 1 month 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: client/fling/src/java/core/com/google/dart/fling/Fling.java
diff --git a/client/fling/src/java/core/com/google/dart/fling/Fling.java b/client/fling/src/java/core/com/google/dart/fling/Fling.java
index 04819f839c5f523be6791c698e49dc3459379ae9..32eccc92d43d71b1e10206d8aadd59da1363a130 100644
--- a/client/fling/src/java/core/com/google/dart/fling/Fling.java
+++ b/client/fling/src/java/core/com/google/dart/fling/Fling.java
@@ -16,11 +16,8 @@ import java.io.File;
public class Fling {
static void emitErrorsAndWarnings(CompileResult result) {
- for (CompileError error : result.getFatalErrors()) {
- System.err.println("FATAL ERROR: " + error);
- }
- for (CompileError error : result.getTypeErrors()) {
- System.err.println("TYPE ERROR: " + error);
+ for (CompileError error : result.getErrors()) {
+ System.err.println("ERROR: " + error);
}
for (CompileError warning : result.getWarnings()) {
System.err.println("WARNING: " + warning);

Powered by Google App Engine
This is Rietveld 408576698