| Index: utils/pub/sdk_source.dart
|
| diff --git a/utils/pub/sdk_source.dart b/utils/pub/sdk_source.dart
|
| index df88d4372669c711d2b5d6226006f53c7cc9b8d6..654043a266c7c87fa84801f779f22342ebe41c53 100644
|
| --- a/utils/pub/sdk_source.dart
|
| +++ b/utils/pub/sdk_source.dart
|
| @@ -2,13 +2,13 @@
|
| // for details. All rights reserved. Use of this source code is governed by a
|
| // BSD-style license that can be found in the LICENSE file.
|
|
|
| -#library('sdk_source');
|
| +library sdk_source;
|
|
|
| -#import('io.dart');
|
| -#import('package.dart');
|
| -#import('pubspec.dart');
|
| -#import('source.dart');
|
| -#import('version.dart');
|
| +import 'io.dart';
|
| +import 'package.dart';
|
| +import 'pubspec.dart';
|
| +import 'source.dart';
|
| +import 'version.dart';
|
|
|
| /// A package source that uses libraries from the Dart SDK.
|
| class SdkSource extends Source {
|
|
|