[Pydev-cvs] org.python.pydev.debug/src/org/python/pydev/debug/core PydevDebugPlugin.java,1.1,1.2 Con
Brought to you by:
fabioz
From: Aleksandar T. <at...@us...> - 2004-04-15 23:24:59
|
Update of /cvsroot/pydev/org.python.pydev.debug/src/org/python/pydev/debug/core In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv17142/src/org/python/pydev/debug/core Modified Files: PydevDebugPlugin.java Constants.java Log Message: Removed the duplicate Tab definitions Index: PydevDebugPlugin.java =================================================================== RCS file: /cvsroot/pydev/org.python.pydev.debug/src/org/python/pydev/debug/core/PydevDebugPlugin.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** PydevDebugPlugin.java 29 Mar 2004 17:07:25 -0000 1.1 --- PydevDebugPlugin.java 15 Apr 2004 23:24:50 -0000 1.2 *************** *** 5,10 **** import org.eclipse.core.runtime.*; import org.eclipse.core.resources.*; - import org.python.pydev.debug.ui.InterpreterEditor; - /** * The main plugin for Python Debugger. --- 5,8 ---- *************** *** 40,48 **** } - public String[] getInterpreters() { - String interpreters = getPreferenceStore().getString(Constants.PREF_INTERPRETER_PATH); - return InterpreterEditor.getInterpreterList(interpreters); - } - /** * @param errorLevel IStatus.[OK|INFO|WARNING|ERROR] --- 38,41 ---- Index: Constants.java =================================================================== RCS file: /cvsroot/pydev/org.python.pydev.debug/src/org/python/pydev/debug/core/Constants.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** Constants.java 8 Jan 2004 22:47:21 -0000 1.1 --- Constants.java 15 Apr 2004 23:24:50 -0000 1.2 *************** *** 28,33 **** static final String ATTR_INTERPRETER = PLUGIN_ID + ".ATTR_INTERPRETER"; - // Preferences - public static final String PREF_INTERPRETER_PATH = "INTERPRETER_PATH"; } --- 28,31 ---- |