mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-06-07 17:56:01 +02:00
remove unused import warning
This commit is contained in:
parent
479dfcc366
commit
154337afe2
2 changed files with 4 additions and 6 deletions
|
@ -12,7 +12,6 @@ package org.eclipse.cdt.core;
|
||||||
|
|
||||||
import org.eclipse.core.runtime.CoreException;
|
import org.eclipse.core.runtime.CoreException;
|
||||||
import org.eclipse.core.runtime.IConfigurationElement;
|
import org.eclipse.core.runtime.IConfigurationElement;
|
||||||
import org.eclipse.core.runtime.IExecutableExtension;
|
|
||||||
|
|
||||||
public interface ICExtensionReference {
|
public interface ICExtensionReference {
|
||||||
|
|
||||||
|
@ -53,7 +52,7 @@ public interface ICExtensionReference {
|
||||||
* <p>
|
* <p>
|
||||||
* The ICExtension is instantiated using its 0-argument public
|
* The ICExtension is instantiated using its 0-argument public
|
||||||
* constructor. If the class implements the
|
* constructor. If the class implements the
|
||||||
* <code>IExecutableExtension</code> interface, the method
|
* <code>org.eclipse.core.runtime.IExecutableExtension</code> interface, the method
|
||||||
* <code>setInitializationData</code> is called, passing to the object
|
* <code>setInitializationData</code> is called, passing to the object
|
||||||
* the configuration information that was used to create it.
|
* the configuration information that was used to create it.
|
||||||
* </p>
|
* </p>
|
||||||
|
@ -65,7 +64,7 @@ public interface ICExtensionReference {
|
||||||
* @return the executable ICExtension instance
|
* @return the executable ICExtension instance
|
||||||
* @exception CoreException if an instance of the executable extension
|
* @exception CoreException if an instance of the executable extension
|
||||||
* could not be created for any reason.
|
* could not be created for any reason.
|
||||||
* @see IExecutableExtension#setInitializationData
|
* @see org.eclipse.core.runtime.IExecutableExtension#setInitializationData
|
||||||
*/
|
*/
|
||||||
public ICExtension createExtension() throws CoreException;
|
public ICExtension createExtension() throws CoreException;
|
||||||
|
|
||||||
|
|
|
@ -21,7 +21,6 @@ import org.eclipse.cdt.utils.AR;
|
||||||
import org.eclipse.cdt.utils.coff.PE;
|
import org.eclipse.cdt.utils.coff.PE;
|
||||||
import org.eclipse.cdt.utils.coff.PEConstants;
|
import org.eclipse.cdt.utils.coff.PEConstants;
|
||||||
import org.eclipse.cdt.utils.coff.PE.Attribute;
|
import org.eclipse.cdt.utils.coff.PE.Attribute;
|
||||||
import org.eclipse.core.resources.IFile;
|
|
||||||
import org.eclipse.core.runtime.IPath;
|
import org.eclipse.core.runtime.IPath;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -35,8 +34,8 @@ public class PEParser extends AbstractCExtension implements IBinaryParser {
|
||||||
return getBinary(null, path);
|
return getBinary(null, path);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/* (non-Javadoc)
|
||||||
* @see org.eclipse.cdt.core.model.IBinaryParser#getBinary(IFile)
|
* @see org.eclipse.cdt.core.IBinaryParser#getBinary(byte[], org.eclipse.core.runtime.IPath)
|
||||||
*/
|
*/
|
||||||
public IBinaryFile getBinary(byte[] hints, IPath path) throws IOException {
|
public IBinaryFile getBinary(byte[] hints, IPath path) throws IOException {
|
||||||
if (path == null) {
|
if (path == null) {
|
||||||
|
|
Loading…
Add table
Reference in a new issue