| Index: pkg/analyzer/lib/src/context/context.dart
|
| diff --git a/pkg/analyzer/lib/src/context/context.dart b/pkg/analyzer/lib/src/context/context.dart
|
| index 29308aeb46952afd8a058f53eff2263efe8d5af5..5e42099fac4b86a3fc231cb1a6da8e7de2224c00 100644
|
| --- a/pkg/analyzer/lib/src/context/context.dart
|
| +++ b/pkg/analyzer/lib/src/context/context.dart
|
| @@ -620,9 +620,9 @@ class AnalysisContextImpl implements InternalAnalysisContext {
|
| }
|
|
|
| @override
|
| - ApplyChangesStatus applyChanges(ChangeSet changeSet) {
|
| + void applyChanges(ChangeSet changeSet) {
|
| if (changeSet.isEmpty) {
|
| - return new ApplyChangesStatus(false);
|
| + return;
|
| }
|
| //
|
| // First, compute the list of sources that have been removed.
|
| @@ -665,11 +665,6 @@ class AnalysisContextImpl implements InternalAnalysisContext {
|
| changeSet.addedSources, changedSources, removedSources);
|
| }
|
| _onSourcesChangedController.add(new SourcesChangedEvent(changeSet));
|
| - return new ApplyChangesStatus(changeSet.addedSources.isNotEmpty ||
|
| - changeSet.changedContents.isNotEmpty ||
|
| - changeSet.deletedSources.isNotEmpty ||
|
| - changedSources.isNotEmpty ||
|
| - removedSources.isNotEmpty);
|
| }
|
|
|
| @override
|
|
|