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

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

Issue 1336733003: Fixed server plugin status reporting. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 5 years, 3 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 | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/analysis_server/lib/src/get_handler.dart
diff --git a/pkg/analysis_server/lib/src/get_handler.dart b/pkg/analysis_server/lib/src/get_handler.dart
index 4a48d8430b6e74f8c071ddbf2ebc73e2d55018b3..b527991e2e5d27c1c360c972f3270491891888a3 100644
--- a/pkg/analysis_server/lib/src/get_handler.dart
+++ b/pkg/analysis_server/lib/src/get_handler.dart
@@ -1385,9 +1385,9 @@ class GetHandler {
*/
void _writePluginStatus(StringBuffer buffer) {
void writePlugin(Plugin plugin) {
- buffer.write(_server.serverPlugin.uniqueIdentifier);
+ buffer.write(plugin.uniqueIdentifier);
buffer.write(' (');
- buffer.write(_server.serverPlugin.runtimeType);
+ buffer.write(plugin.runtimeType);
buffer.write(')<br>');
}
buffer.write('<h3>Plugin Status</h3><p>');
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698