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

Unified Diff: compiler/javatests/com/google/dart/compiler/DartLibrarySourceTest.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/javatests/com/google/dart/compiler/DartLibrarySourceTest.java
diff --git a/compiler/javatests/com/google/dart/compiler/DartLibrarySourceTest.java b/compiler/javatests/com/google/dart/compiler/DartLibrarySourceTest.java
index 34586642ebbc3ef39dd0fedce90a933cdd4ffdc1..c4307414c0124c4329f980a7edce069515f4568f 100644
--- a/compiler/javatests/com/google/dart/compiler/DartLibrarySourceTest.java
+++ b/compiler/javatests/com/google/dart/compiler/DartLibrarySourceTest.java
@@ -28,7 +28,7 @@ public class DartLibrarySourceTest extends SourceTest implements LibrarySource {
@Override
public LibrarySource getImportFor(String relPath) throws IOException {
- throw new RuntimeException("Unimplemented");
+ return null;
}
@Override

Powered by Google App Engine
This is Rietveld 408576698