Update of /cvsroot/pydev/org.python.pydev.refactoring/tests/org/python/pydev/refactoring/tests/adapter
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv32048/tests/org/python/pydev/refactoring/tests/adapter
Modified Files:
CodeCompletionASTManagerStub.java
Log Message:
<li>Fixed NPE when creating editor with no interpreter configured</li>
<li>Hyperlink works in the same way that F3 (saves file before search)</li>
<li>Fixed problem while navigating pydev package explorer ( https://sourceforge.net/tracker/index.php?func=detail&aid=2008015&group_id=85796&atid=577329 )</li>
<li>Applied patch that fixes race condition in PythonNature (thanks to Radim Kubacki)</li>
<li><strong>Eclipse 3.4</strong>: Move / rename working</li>
Index: CodeCompletionASTManagerStub.java
===================================================================
RCS file: /cvsroot/pydev/org.python.pydev.refactoring/tests/org/python/pydev/refactoring/tests/adapter/CodeCompletionASTManagerStub.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** CodeCompletionASTManagerStub.java 20 Oct 2007 19:31:00 -0000 1.3
--- CodeCompletionASTManagerStub.java 31 Jul 2008 01:48:12 -0000 1.4
***************
*** 140,144 ****
}
! public void setProject(IProject project, boolean restoreDeltas) {
throw new RuntimeException("Not implemented");
}
--- 140,144 ----
}
! public void setProject(IProject project, IPythonNature nature, boolean restoreDeltas) {
throw new RuntimeException("Not implemented");
}
|