1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-29 19:45:01 +02:00

Cosmetics.

This commit is contained in:
Sergey Prigogin 2009-12-06 03:49:38 +00:00
parent 9408357b60
commit 9a44e49e11

View file

@ -237,11 +237,10 @@ public abstract class PDOMBinding extends PDOMNamedNode implements IPDOMBinding
*/
@Override
public final String toString() {
String name;
name = toStringBase();
String name = toStringBase();
try {
return name + " " + getConstantNameForValue(getLinkage(), getNodeType()); //$NON-NLS-1$
} catch (CoreException ce) {
} catch (CoreException e) {
return name + " " + getNodeType(); //$NON-NLS-1$
}
}