|
From: David C. <dc...@us...> - 2005-11-20 02:23:17
|
Update of /cvsroot/rubyeclipse/org.rubypeople.rdt.ui/src/org/rubypeople/rdt/internal/ui In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4841/src/org/rubypeople/rdt/internal/ui Modified Files: RubyPlugin.java Log Message: Changed job management for index building. Changed finds to be job-based. Index: RubyPlugin.java =================================================================== RCS file: /cvsroot/rubyeclipse/org.rubypeople.rdt.ui/src/org/rubypeople/rdt/internal/ui/RubyPlugin.java,v retrieving revision 1.16 retrieving revision 1.17 diff -C2 -d -r1.16 -r1.17 *** RubyPlugin.java 16 Oct 2005 19:03:37 -0000 1.16 --- RubyPlugin.java 20 Nov 2005 02:23:07 -0000 1.17 *************** *** 50,53 **** --- 50,54 ---- import org.rubypeople.rdt.internal.ui.rubyeditor.WorkingCopyManager; import org.rubypeople.rdt.internal.ui.rubyeditor.templates.RubyTemplateAccess; + import org.rubypeople.rdt.internal.ui.symbols.BlockingSymbolFinder; import org.rubypeople.rdt.internal.ui.text.IRubyColorConstants; import org.rubypeople.rdt.internal.ui.text.PreferencesAdapter; *************** *** 130,133 **** --- 131,139 ---- } }); + + + RubyCore rubyCore = RubyCore.getPlugin(); + BlockingSymbolFinder symbolFinder = new BlockingSymbolFinder(rubyCore.getSymbolFinder()); + rubyCore.setSymbolFinder(symbolFinder); listenForNewProjects(); |