diff --git a/core/org.eclipse.cdt.core/src/org/eclipse/cdt/core/ICExtensionReference.java b/core/org.eclipse.cdt.core/src/org/eclipse/cdt/core/ICExtensionReference.java
index 4c459c57606..76b75904c42 100644
--- a/core/org.eclipse.cdt.core/src/org/eclipse/cdt/core/ICExtensionReference.java
+++ b/core/org.eclipse.cdt.core/src/org/eclipse/cdt/core/ICExtensionReference.java
@@ -12,7 +12,6 @@ package org.eclipse.cdt.core;
import org.eclipse.core.runtime.CoreException;
import org.eclipse.core.runtime.IConfigurationElement;
-import org.eclipse.core.runtime.IExecutableExtension;
public interface ICExtensionReference {
@@ -53,7 +52,7 @@ public interface ICExtensionReference {
*
* The ICExtension is instantiated using its 0-argument public
* constructor. If the class implements the
- * IExecutableExtension
interface, the method
+ * org.eclipse.core.runtime.IExecutableExtension
interface, the method
* setInitializationData
is called, passing to the object
* the configuration information that was used to create it.
*
@@ -65,7 +64,7 @@ public interface ICExtensionReference {
* @return the executable ICExtension instance
* @exception CoreException if an instance of the executable extension
* could not be created for any reason.
- * @see IExecutableExtension#setInitializationData
+ * @see org.eclipse.core.runtime.IExecutableExtension#setInitializationData
*/
public ICExtension createExtension() throws CoreException;
diff --git a/core/org.eclipse.cdt.core/utils/org/eclipse/cdt/utils/coff/parser/PEParser.java b/core/org.eclipse.cdt.core/utils/org/eclipse/cdt/utils/coff/parser/PEParser.java
index 50f63c09d84..3c245d2c198 100644
--- a/core/org.eclipse.cdt.core/utils/org/eclipse/cdt/utils/coff/parser/PEParser.java
+++ b/core/org.eclipse.cdt.core/utils/org/eclipse/cdt/utils/coff/parser/PEParser.java
@@ -21,7 +21,6 @@ import org.eclipse.cdt.utils.AR;
import org.eclipse.cdt.utils.coff.PE;
import org.eclipse.cdt.utils.coff.PEConstants;
import org.eclipse.cdt.utils.coff.PE.Attribute;
-import org.eclipse.core.resources.IFile;
import org.eclipse.core.runtime.IPath;
/**
@@ -35,8 +34,8 @@ public class PEParser extends AbstractCExtension implements IBinaryParser {
return getBinary(null, path);
}
- /**
- * @see org.eclipse.cdt.core.model.IBinaryParser#getBinary(IFile)
+ /* (non-Javadoc)
+ * @see org.eclipse.cdt.core.IBinaryParser#getBinary(byte[], org.eclipse.core.runtime.IPath)
*/
public IBinaryFile getBinary(byte[] hints, IPath path) throws IOException {
if (path == null) {