[Pydev-cvs] org.python.pydev/src/org/python/pydev/editor PyEdit.java, 1.129, 1.130
Brought to you by:
fabioz
From: Fabio Z. <fa...@us...> - 2008-06-01 20:44:35
|
Update of /cvsroot/pydev/org.python.pydev/src/org/python/pydev/editor In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24261/src/org/python/pydev/editor Modified Files: PyEdit.java Log Message: Organize imports can group from xxx imports. Index: PyEdit.java =================================================================== RCS file: /cvsroot/pydev/org.python.pydev/src/org/python/pydev/editor/PyEdit.java,v retrieving revision 1.129 retrieving revision 1.130 diff -C2 -d -r1.129 -r1.130 *** PyEdit.java 4 Feb 2008 02:01:35 -0000 1.129 --- PyEdit.java 1 Jun 2008 20:44:41 -0000 1.130 *************** *** 423,427 **** /** ! * @return the indentation preferences */ public IIndentPrefs getIndentPrefs() { --- 423,429 ---- /** ! * @return the indentation preferences. Any action writing something should use this one in the editor because ! * we want to make sure that the indent must be the one bounded to this editor (because tabs may be forced in a given ! * editor, even if does not match the global settings). */ public IIndentPrefs getIndentPrefs() { |