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

Unified Diff: editor/tools/plugins/com.google.dart.tools.ui/src/com/google/dart/tools/ui/internal/filesview/IgnoreResourceAction.java

Issue 10477005: Re-enable scan thresholds when opening folder (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years, 7 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: editor/tools/plugins/com.google.dart.tools.ui/src/com/google/dart/tools/ui/internal/filesview/IgnoreResourceAction.java
===================================================================
--- editor/tools/plugins/com.google.dart.tools.ui/src/com/google/dart/tools/ui/internal/filesview/IgnoreResourceAction.java (revision 8212)
+++ editor/tools/plugins/com.google.dart.tools.ui/src/com/google/dart/tools/ui/internal/filesview/IgnoreResourceAction.java (working copy)
@@ -102,7 +102,7 @@
DartModelManager.getInstance().removeFromIgnores(resource);
if (DartCoreDebug.ANALYSIS_SERVER) {
File file = resource.getLocation().toFile();
- SystemLibraryManagerProvider.getDefaultAnalysisServer().scan(file);
+ SystemLibraryManagerProvider.getDefaultAnalysisServer().scan(file, true);
} else {
AnalyzeProjectJob analyzeProjectJob = new AnalyzeProjectJob(resource.getProject());
analyzeProjectJob.schedule();

Powered by Google App Engine
This is Rietveld 408576698