| Index: lib/compiler/implementation/scanner/scanner_task.dart
|
| diff --git a/lib/compiler/implementation/scanner/scanner_task.dart b/lib/compiler/implementation/scanner/scanner_task.dart
|
| index 3d7b3cdec94d2579294bb052d7277a1f093c815e..178a4798f801734249b3d618941aba4be2bbab96 100644
|
| --- a/lib/compiler/implementation/scanner/scanner_task.dart
|
| +++ b/lib/compiler/implementation/scanner/scanner_task.dart
|
| @@ -80,11 +80,7 @@ class ScannerTask extends CompilerTask {
|
| if (resolved.toString() == "dart:core") {
|
| implicitlyImportCoreLibrary = false;
|
| }
|
| - LibraryElement importedLibrary = loadLibrary(resolved, argument);
|
| - importLibrary(library, importedLibrary, tag);
|
| - if (resolved.scheme == "dart") {
|
| - compiler.patchDartLibrary(importedLibrary, resolved.path);
|
| - }
|
| + importLibrary(library, loadLibrary(resolved, argument), tag);
|
| }
|
| if (implicitlyImportCoreLibrary) {
|
| importLibrary(library, compiler.coreLibrary, null);
|
|
|