| Index: utils/pub/source.dart
|
| diff --git a/utils/pub/source.dart b/utils/pub/source.dart
|
| index 0dc6a23bca7f3de35a6aeb1967f42d68ff5bf7c6..85a6c7bfb2bc7c64e51b99a6aa33a28de97051ec 100644
|
| --- a/utils/pub/source.dart
|
| +++ b/utils/pub/source.dart
|
| @@ -21,7 +21,7 @@ abstract class Source {
|
| * The name of the source. Should be lower-case, suitable for use in a
|
| * filename, and unique accross all sources.
|
| */
|
| - abstract String get name;
|
| + String get name;
|
|
|
| /// Whether or not this source is the default source.
|
| bool get isDefault => systemCache.sources.defaultSource == this;
|
| @@ -34,7 +34,7 @@ abstract class Source {
|
| * packages. It doesn't need to be cached if all packages are available
|
| * locally.
|
| */
|
| - abstract bool get shouldCache;
|
| + bool get shouldCache;
|
|
|
| /**
|
| * The system cache with which this source is registered.
|
|
|