|
From: David C. <dc...@us...> - 2005-10-02 22:14:39
|
Update of /cvsroot/rubyeclipse/org.rubypeople.rdt.core/src/org/rubypeople/rdt/core In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8784/src/org/rubypeople/rdt/core Modified Files: RubyCore.java Log Message: Refactored RubyBuilder into several smaller classes. Wrote UTs for a few of them. Began work on a SymbolIndex. Index: RubyCore.java =================================================================== RCS file: /cvsroot/rubyeclipse/org.rubypeople.rdt.core/src/org/rubypeople/rdt/core/RubyCore.java,v retrieving revision 1.14 retrieving revision 1.15 diff -C2 -d -r1.14 -r1.15 *** RubyCore.java 26 Sep 2005 21:48:31 -0000 1.14 --- RubyCore.java 1 Oct 2005 23:01:01 -0000 1.15 *************** *** 226,230 **** } ! /** * @since 3.1 */ --- 226,234 ---- } ! public static void trace(String message) { ! if (getPlugin().isDebugging()) System.out.println(message); ! } ! ! /** * @since 3.1 */ |