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

Unified Diff: pkg/analysis_server/test/domain_execution_test.dart

Issue 709493002: Fix 'Unused local variable' hints in analyzer and analysis_server. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 1 month 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
Index: pkg/analysis_server/test/domain_execution_test.dart
diff --git a/pkg/analysis_server/test/domain_execution_test.dart b/pkg/analysis_server/test/domain_execution_test.dart
index 24aea8d6a8cad0953c18738d2924b40f24ef02ef..447a736ba9fceae1e2e363517b38eb471ad4a4bc 100644
--- a/pkg/analysis_server/test/domain_execution_test.dart
+++ b/pkg/analysis_server/test/domain_execution_test.dart
@@ -219,7 +219,7 @@ main() {
ExecutionDomainHandler handler = new ExecutionDomainHandler(server);
Request request = new ExecutionSetSubscriptionsParams(
[ExecutionService.LAUNCH_DATA]).toRequest('0');
- Response response = handler.handleRequest(request);
+ handler.handleRequest(request);
// controller.add(null);
expect(unsentNotifications, isEmpty);
@@ -267,7 +267,6 @@ class IsExecutableFile extends Matcher {
if (item is! ExecutableFile) {
return false;
}
- ExecutableFile file = item;
return item.file == expectedFile && item.kind == expectedKind;
}
}
« no previous file with comments | « pkg/analysis_server/test/domain_completion_test.dart ('k') | pkg/analysis_server/test/edit/refactoring_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698