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

Unified Diff: utils/pub/system_cache.dart

Issue 11871028: Clean up code that locates SDK and SDK version. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 11 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
Index: utils/pub/system_cache.dart
diff --git a/utils/pub/system_cache.dart b/utils/pub/system_cache.dart
index 3074a741188331a2820426075f408ba38846b653..50b022ee2495435c83fb433a0db1c2842da036a5 100644
--- a/utils/pub/system_cache.dart
+++ b/utils/pub/system_cache.dart
@@ -43,9 +43,9 @@ class SystemCache {
sources = new SourceRegistry();
/// Creates a system cache and registers the standard set of sources.
- factory SystemCache.withSources(String rootDir, String sdkDir) {
+ factory SystemCache.withSources(String rootDir) {
var cache = new SystemCache(rootDir);
- cache.register(new SdkSource(sdkDir));
+ cache.register(new SdkSource());
cache.register(new GitSource());
cache.register(new HostedSource());
cache.sources.setDefault('hosted');

Powered by Google App Engine
This is Rietveld 408576698