| Index: dart/lib/compiler/implementation/compiler.dart
|
| diff --git a/dart/lib/compiler/implementation/compiler.dart b/dart/lib/compiler/implementation/compiler.dart
|
| index ad28ba8d69fd5c74d0ff334f195997d75a12c31b..02bdebe1cdeedb7544de193cb0afd26726f0a8f7 100644
|
| --- a/dart/lib/compiler/implementation/compiler.dart
|
| +++ b/dart/lib/compiler/implementation/compiler.dart
|
| @@ -375,11 +375,9 @@ class Compiler implements DiagnosticListener {
|
| }
|
|
|
| void patchDartLibrary(LibraryElement library, String dartLibraryPath) {
|
| - print("[Patching; $library ($dartLibraryPath)");
|
| if (library.isPatched) return;
|
| Uri patchUri = resolvePatchUri(dartLibraryPath);
|
| if (patchUri !== null) {
|
| - print("[... loading patch ...]");
|
| patchParser.patchLibrary(patchUri, library);
|
| // We allow foreign functions in patched libraries.
|
| addForeignFunctions(library); // Is safe even if already added.
|
|
|