Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(288)

Unified Diff: pkg/analysis_server/lib/src/status/get_handler.dart

Issue 2209493003: Don't report removed sources as changed in CacheConsistencyValidatorImpl. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | pkg/analyzer/lib/src/context/cache.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/analysis_server/lib/src/status/get_handler.dart
diff --git a/pkg/analysis_server/lib/src/status/get_handler.dart b/pkg/analysis_server/lib/src/status/get_handler.dart
index 57efe19b0754e059e356678a99989f8e38de2f52..d9486dd8b84f25b3da86fef4c227bdfd6eafe001 100644
--- a/pkg/analysis_server/lib/src/status/get_handler.dart
+++ b/pkg/analysis_server/lib/src/status/get_handler.dart
@@ -827,17 +827,17 @@ class GetHandler {
'<table style="border-collapse: separate; border-spacing: 10px 5px;">');
_writeRow(buffer, ['Name', 'Count'], header: true);
_writeRow(buffer, [
- 'Modified',
+ 'Changed',
PerformanceStatistics
- .cacheConsistencyValidationStatistics.numOfModified
+ .cacheConsistencyValidationStatistics.numOfChanged
], classes: [
null,
"right"
]);
_writeRow(buffer, [
- 'Deleted',
+ 'Removed',
PerformanceStatistics
- .cacheConsistencyValidationStatistics.numOfDeleted
+ .cacheConsistencyValidationStatistics.numOfRemoved
], classes: [
null,
"right"
« no previous file with comments | « no previous file | pkg/analyzer/lib/src/context/cache.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698