Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJerome Lanneluc2006-06-20 15:12:46 +0000
committerJerome Lanneluc2006-06-20 15:12:46 +0000
commitd3e25471fe1977175fc3b3962fe07cca18de7021 (patch)
tree00692a99cf22e2633811d2d0e030bad854e5d377
parent00d21dfde9b519788be60b0e7fb433f083aab924 (diff)
downloadeclipse.jdt.core-d3e25471fe1977175fc3b3962fe07cca18de7021.tar.gz
eclipse.jdt.core-d3e25471fe1977175fc3b3962fe07cca18de7021.tar.xz
eclipse.jdt.core-d3e25471fe1977175fc3b3962fe07cca18de7021.zip
TARGET_321 - 142059
-rw-r--r--org.eclipse.jdt.core/buildnotes_jdt-core.html4
-rw-r--r--org.eclipse.jdt.core/model/org/eclipse/jdt/internal/core/util/ResourceCompilationUnit.java2
2 files changed, 4 insertions, 2 deletions
diff --git a/org.eclipse.jdt.core/buildnotes_jdt-core.html b/org.eclipse.jdt.core/buildnotes_jdt-core.html
index 8a427f7167..0ceb598b28 100644
--- a/org.eclipse.jdt.core/buildnotes_jdt-core.html
+++ b/org.eclipse.jdt.core/buildnotes_jdt-core.html
@@ -57,7 +57,9 @@ Eclipse SDK 3.2.1 - ?th September 2006
</ul>
<h3>Problem Reports Fixed</h3>
-<a href="http://bugs.eclipse.org/bugs/show_bug.cgi?id=143013">143013</a>
+<a href="http://bugs.eclipse.org/bugs/show_bug.cgi?id=142059">142059</a>
+[efs] renaming package fails to update references
+<br><a href="http://bugs.eclipse.org/bugs/show_bug.cgi?id=143013">143013</a>
SWTException: Failed to execute runnable (...AbortCompilation)
<br><a href="http://bugs.eclipse.org/bugs/show_bug.cgi?id=147024">147024</a>
[compiler] Compiler bug when accessing static final attribute in a non-static way
diff --git a/org.eclipse.jdt.core/model/org/eclipse/jdt/internal/core/util/ResourceCompilationUnit.java b/org.eclipse.jdt.core/model/org/eclipse/jdt/internal/core/util/ResourceCompilationUnit.java
index 6cf2f148e5..0e55fffbb7 100644
--- a/org.eclipse.jdt.core/model/org/eclipse/jdt/internal/core/util/ResourceCompilationUnit.java
+++ b/org.eclipse.jdt.core/model/org/eclipse/jdt/internal/core/util/ResourceCompilationUnit.java
@@ -25,7 +25,7 @@ public class ResourceCompilationUnit extends CompilationUnit {
private IFile file;
public ResourceCompilationUnit(IFile file, URI location) {
- super(null/*no contents*/, location == null ? file.getFullPath().toString() : location.getSchemeSpecificPart(), null/*encoding is used only when retrieving the contents*/);
+ super(null/*no contents*/, location == null ? file.getFullPath().toString() : location.getPath(), null/*encoding is used only when retrieving the contents*/);
this.file = file;
}

Back to the top