fix for resolving dart core library names with "_"

Review URL: https://codereview.chromium.org//11416246

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@15465 260f80e4-7a28-3924-810f-c04153c831b5
This commit is contained in:
keertip@google.com 2012-11-28 19:35:40 +00:00
parent f066ff463f
commit 52d2be32af

View file

@ -43,7 +43,7 @@ public class SystemLibraryManager {
public URI expandRelativeDartUri(URI uri) throws AssertionError {
String host = uri.getHost();
if (host == null) {
if (host == null && uri.getAuthority() == null) {
String spec = uri.getSchemeSpecificPart();
String replacement = expansionMap.get(spec);
if (replacement != null) {