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

Unified Diff: tools/patch_sdk.dart

Issue 3005913003: Revert: Removed Dartium SDK libs (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 | « tests/lib/analyzer/analyze_library.status ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/patch_sdk.dart
diff --git a/tools/patch_sdk.dart b/tools/patch_sdk.dart
index ec5d4ab10a892e10e1a8d47a7cec12f1bc4c9ec0..0f7b10aed65317312621a5bbded00daff2a50a08 100644
--- a/tools/patch_sdk.dart
+++ b/tools/patch_sdk.dart
@@ -43,8 +43,7 @@ final deps = new Set<Uri>();
File getInputFile(String path, {canBeMissing: false}) {
final file = new File(path);
if (!file.existsSync()) {
- if (!canBeMissing)
- throw "patch_sdk.dart expects all inputs to exist, missing: $path";
+ if (!canBeMissing) throw "patch_sdk.dart expects all inputs to exist";
return null;
}
deps.add(Uri.base.resolveUri(file.uri));
« no previous file with comments | « tests/lib/analyzer/analyze_library.status ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698