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

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

Issue 2321263003: Remove parseUriWithException() and URISyntaxException. (Closed)
Patch Set: Created 4 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 | pkg/analyzer/lib/source/embedder.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/analysis_server/test/completion_test_support.dart
diff --git a/pkg/analysis_server/test/completion_test_support.dart b/pkg/analysis_server/test/completion_test_support.dart
index 1ef8e4c9e9e227e6250a2ff57211550ae7ed9b44..e477c5bf116f6868bf1cc30b661e0fefcc739b29 100644
--- a/pkg/analysis_server/test/completion_test_support.dart
+++ b/pkg/analysis_server/test/completion_test_support.dart
@@ -8,7 +8,6 @@ import 'dart:async';
import 'dart:collection';
import 'package:analysis_server/plugin/protocol/protocol.dart';
-import 'package:analyzer/src/generated/java_core.dart';
Brian Wilkerson 2016/09/09 13:49:35 If there were no references to anything imported f
import 'package:unittest/unittest.dart';
import 'domain_completion_test.dart';
@@ -162,8 +161,7 @@ class LocationSpec {
String value = result.substring(2);
LocationSpec test = tests[id];
if (test == null) {
- throw new StateError(
- "Invalid location result id: $id for: $result");
+ throw new StateError("Invalid location result id: $id for: $result");
}
test.source = modifiedSource;
if (sign == '+') {
« no previous file with comments | « no previous file | pkg/analyzer/lib/source/embedder.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698