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

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

Issue 9212008: Issue 1164: Out of date system libraries + restarted compiler (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 11 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/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

Powered by Google App Engine
This is Rietveld 408576698