1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-06-05 08:46:02 +02:00

Cosmetics.

This commit is contained in:
Sergey Prigogin 2012-09-05 20:03:55 -07:00
parent 7660c4881e
commit d62945a3d9
3 changed files with 9 additions and 18 deletions

View file

@ -172,9 +172,6 @@ public class IndexFileSet implements IIndexFileSet {
return invert;
}
/* (non-Javadoc)
* @see org.eclipse.cdt.core.index.IIndexFileSet#invert()
*/
@Override
public IIndexFileSet invert() {
if (fInverse == null) {

View file

@ -44,9 +44,6 @@ public class PDOMProjectIndexLocationConverter implements IIndexLocationConverte
fIgnoreExternal= ignoreWSExternal;
}
/* (non-Javadoc)
* @see org.eclipse.cdt.internal.core.pdom.dom.IIndexLocationConverter#fromInternalFormat(java.lang.String)
*/
@Override
public IIndexFileLocation fromInternalFormat(String raw) {
String fullPath = null;
@ -54,7 +51,7 @@ public class PDOMProjectIndexLocationConverter implements IIndexLocationConverte
if (raw.startsWith(EXTERNAL)) {
try {
uri = new URI(raw.substring(EXTERNAL.length()));
} catch(URISyntaxException use) {
} catch (URISyntaxException e) {
}
} else {
if (raw.startsWith(WS)) {
@ -71,9 +68,6 @@ public class PDOMProjectIndexLocationConverter implements IIndexLocationConverte
return uri == null ? null : new IndexFileLocation(uri, fullPath);
}
/* (non-Javadoc)
* @see org.eclipse.cdt.internal.core.pdom.dom.IIndexLocationConverter#toRaw(java.net.URI)
*/
@Override
public String toInternalFormat(IIndexFileLocation location) {
String fullPath= location.getFullPath();