|
From: Christopher W. <caw...@us...> - 2005-12-14 03:03:37
|
Update of /cvsroot/rubyeclipse/org.rubypeople.rdt.core/src/org/rubypeople/rdt/internal/core In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv11246/src/org/rubypeople/rdt/internal/core Modified Files: RubyModelManager.java Log Message: add dependency on jface.text, fix reference to nonexistant class Index: RubyModelManager.java =================================================================== RCS file: /cvsroot/rubyeclipse/org.rubypeople.rdt.core/src/org/rubypeople/rdt/internal/core/RubyModelManager.java,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** RubyModelManager.java 13 Dec 2005 19:58:55 -0000 1.5 --- RubyModelManager.java 14 Dec 2005 03:03:29 -0000 1.6 *************** *** 34,38 **** import org.rubypeople.rdt.internal.core.buffer.BufferManager; import org.rubypeople.rdt.internal.core.builder.RubyBuilder; - import org.rubypeople.rdt.internal.formatter.DefaultCodeFormatter; /** --- 34,37 ---- *************** *** 652,659 **** RubyModelOperation.POST_ACTION_VERBOSE = option.equalsIgnoreCase("true"); //$NON-NLS-1$ - option = Platform.getDebugOption(ENABLE_NEW_FORMATTER); - if (option != null) - DefaultCodeFormatter.USE_NEW_FORMATTER = option.equalsIgnoreCase("true"); //$NON-NLS-1$ - // configure performance options if (PerformanceStats.ENABLED) { --- 651,654 ---- |