| Index: editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/source/SourceFactory.java
|
| diff --git a/editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/source/SourceFactory.java b/editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/source/SourceFactory.java
|
| index b576e8c70f0c4c72a10bc0225a8199f97647092c..098b8e1e567d55fb5180dad38a31f606a24ec035 100644
|
| --- a/editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/source/SourceFactory.java
|
| +++ b/editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/source/SourceFactory.java
|
| @@ -114,7 +114,7 @@ public class SourceFactory {
|
| public Source resolveUri(Source containingSource, String containedUri) {
|
| try {
|
| // Force the creation of an escaped URI to deal with spaces, etc.
|
| - return resolveUri(containingSource, new URI(null, null, containedUri, null));
|
| + return resolveUri(containingSource, new URI(containedUri));
|
| } catch (URISyntaxException exception) {
|
| return null;
|
| }
|
|
|