Update of /cvsroot/pydev/org.python.pydev/src/org/python/pydev/editor/actions
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28899/src/org/python/pydev/editor/actions
Modified Files:
PyAction.java
Log Message:
changed getDelimiter to public.
Index: PyAction.java
===================================================================
RCS file: /cvsroot/pydev/org.python.pydev/src/org/python/pydev/editor/actions/PyAction.java,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -d -r1.6 -r1.7
*** PyAction.java 16 Jul 2004 15:34:39 -0000 1.6
--- PyAction.java 29 Jul 2004 12:43:02 -0000 1.7
***************
*** 60,64 ****
* @throws BadLocationException
*/
! protected static String getDelimiter(IDocument doc, int startLineIndex)
throws BadLocationException {
String endLineDelim = doc.getLineDelimiter(startLineIndex);
--- 60,64 ----
* @throws BadLocationException
*/
! public static String getDelimiter(IDocument doc, int startLineIndex)
throws BadLocationException {
String endLineDelim = doc.getLineDelimiter(startLineIndex);
|