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

Unified Diff: compiler/java/com/google/dart/compiler/DeltaAnalyzer.java

Issue 9420011: Issue 1548. If URI can not be parsed, return null. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 10 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: compiler/java/com/google/dart/compiler/DeltaAnalyzer.java
diff --git a/compiler/java/com/google/dart/compiler/DeltaAnalyzer.java b/compiler/java/com/google/dart/compiler/DeltaAnalyzer.java
index 60d8eee79ab09d6b730d5a611e39018c4f5f2feb..2c6161126e4244b249431892bf7054dd5597f232 100644
--- a/compiler/java/com/google/dart/compiler/DeltaAnalyzer.java
+++ b/compiler/java/com/google/dart/compiler/DeltaAnalyzer.java
@@ -123,12 +123,12 @@ class DeltaAnalyzer {
@Override
public DartSource getSourceFor(String relPath) {
- throw new AssertionError();
+ return null;
}
@Override
public LibrarySource getImportFor(String relPath) {
- throw new AssertionError();
+ return null;
}
};
}

Powered by Google App Engine
This is Rietveld 408576698