Chromium Code Reviews| Index: compiler/java/com/google/dart/compiler/UrlSource.java |
| diff --git a/compiler/java/com/google/dart/compiler/UrlSource.java b/compiler/java/com/google/dart/compiler/UrlSource.java |
| index 6411b0512bd4e9e962d7efe5c23f947d6b07986e..1f9b039892a904bf07ba9678b2f161c3909c398a 100644 |
| --- a/compiler/java/com/google/dart/compiler/UrlSource.java |
| +++ b/compiler/java/com/google/dart/compiler/UrlSource.java |
| @@ -128,7 +128,7 @@ public abstract class UrlSource implements Source { |
| synchronized(this) { |
| if (!propertiesInitialized) { |
| try { |
| - URI resolvedUri = BASE_URI.resolve(uri); |
| + URI resolvedUri = BASE_URI.resolve(translatedUri); |
|
mmendez
2012/01/13 18:19:55
Not for this change but, we need to think about ho
|
| String scheme = resolvedUri.getScheme(); |
| if (scheme == null || FILE_PROTOCOL.equals(scheme)) { |
| // Faster than using URLConnection |