|
From: David C. <dc...@us...> - 2005-11-20 02:23:25
|
Update of /cvsroot/rubyeclipse/org.rubypeople.rdt.core/src/org/rubypeople/rdt/core In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4864/src/org/rubypeople/rdt/core Modified Files: RubyCore.java Log Message: Changed job management for index building. Changed finds to be job-based. Index: RubyCore.java =================================================================== RCS file: /cvsroot/rubyeclipse/org.rubypeople.rdt.core/src/org/rubypeople/rdt/core/RubyCore.java,v retrieving revision 1.26 retrieving revision 1.27 diff -C2 -d -r1.26 -r1.27 *** RubyCore.java 19 Nov 2005 20:23:25 -0000 1.26 --- RubyCore.java 20 Nov 2005 02:23:11 -0000 1.27 *************** *** 152,160 **** private SymbolIndex symbolIndex; public RubyCore() { super(); RUBY_CORE_PLUGIN = this; ! symbolIndex = new SymbolIndex(); } --- 152,161 ---- private SymbolIndex symbolIndex; + private ISymbolFinder symbolFinder; public RubyCore() { super(); RUBY_CORE_PLUGIN = this; ! symbolFinder = symbolIndex = new SymbolIndex(); } *************** *** 479,483 **** public ISymbolFinder getSymbolFinder() { ! return symbolIndex; } } \ No newline at end of file --- 480,488 ---- public ISymbolFinder getSymbolFinder() { ! return symbolFinder; ! } ! ! public void setSymbolFinder(ISymbolFinder symbolFinder) { ! this.symbolFinder = symbolFinder; } } \ No newline at end of file |