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

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

Issue 3004523003: Remove more references to the old plugin system (Closed)
Patch Set: Created 3 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 | « pkg/analysis_server/lib/src/socket_server.dart ('k') | pkg/analysis_server/lib/starter.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/diagnostics.dart
diff --git a/pkg/analysis_server/lib/src/status/diagnostics.dart b/pkg/analysis_server/lib/src/status/diagnostics.dart
index b0cf8a37e16ae88471743404ef9881e4def6c3a6..fe89a6f2b784d8c858545fd17030629cb7dd256c 100644
--- a/pkg/analysis_server/lib/src/status/diagnostics.dart
+++ b/pkg/analysis_server/lib/src/status/diagnostics.dart
@@ -34,7 +34,6 @@ import 'package:analyzer/src/generated/utilities_general.dart';
import 'package:analyzer/src/lint/linter.dart';
import 'package:analyzer/src/lint/registry.dart';
import 'package:analyzer/src/services/lint.dart';
-import 'package:plugin/plugin.dart';
final String kCustomCss = '''
.lead, .page-title+.markdown-body>p:first-child {
@@ -1014,20 +1013,6 @@ class PluginsPage extends DiagnosticPageWithNav {
buf.writeln('${p.data.name} ${p.pluginId} (${p.data.version})');
});
}
-
- h3('Analyzer plugins');
- void writePlugin(Plugin plugin) {
- buf.write(plugin.uniqueIdentifier);
- buf.write(' (');
- buf.write(plugin.runtimeType);
- buf.write(')');
- }
-
- List<Plugin> plugins = [
- AnalysisEngine.instance.enginePlugin,
- ];
- plugins.addAll(server.userDefinedPlugins);
- ul(plugins, writePlugin);
}
}
« no previous file with comments | « pkg/analysis_server/lib/src/socket_server.dart ('k') | pkg/analysis_server/lib/starter.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698