|
From: <caw...@us...> - 2007-09-11 15:42:32
|
Revision: 3136
http://rubyeclipse.svn.sourceforge.net/rubyeclipse/?rev=3136&view=rev
Author: cawilliams
Date: 2007-09-11 08:42:26 -0700 (Tue, 11 Sep 2007)
Log Message:
-----------
minor change in how OccurrencesFinder job is run
Modified Paths:
--------------
trunk/org.rubypeople.rdt.ui/src/org/rubypeople/rdt/internal/ui/rubyeditor/RubyAbstractEditor.java
Modified: trunk/org.rubypeople.rdt.ui/src/org/rubypeople/rdt/internal/ui/rubyeditor/RubyAbstractEditor.java
===================================================================
--- trunk/org.rubypeople.rdt.ui/src/org/rubypeople/rdt/internal/ui/rubyeditor/RubyAbstractEditor.java 2007-09-11 15:42:13 UTC (rev 3135)
+++ trunk/org.rubypeople.rdt.ui/src/org/rubypeople/rdt/internal/ui/rubyeditor/RubyAbstractEditor.java 2007-09-11 15:42:26 UTC (rev 3136)
@@ -1500,10 +1500,9 @@
// Mark occurrences
fOccurrencesFinderJob= new OccurrencesFinderJob(document, positions, selection);
- //fOccurrencesFinderJob.setPriority(Job.DECORATE);
- //fOccurrencesFinderJob.setSystem(true);
- //fOccurrencesFinderJob.schedule();
- fOccurrencesFinderJob.run(new NullProgressMonitor());
+ fOccurrencesFinderJob.setPriority(Job.DECORATE);
+ fOccurrencesFinderJob.setSystem(true);
+ fOccurrencesFinderJob.schedule();
}
protected void setMarkOccurrencePreferences(IOccurrencesFinder occurrencesFinder)
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|