1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-23 22:52:11 +02:00

Code formatting.

This commit is contained in:
Sergey Prigogin 2009-02-17 05:56:26 +00:00
parent f2bf6c0fa9
commit b749b3efe5
3 changed files with 1 additions and 6 deletions

View file

@ -20,5 +20,5 @@ public interface IEnumeration extends IBinding, IType {
* returns an array of the IEnumerators declared in this enumeration * returns an array of the IEnumerators declared in this enumeration
* @throws DOMException * @throws DOMException
*/ */
IEnumerator [] getEnumerators() throws DOMException; IEnumerator[] getEnumerators() throws DOMException;
} }

View file

@ -27,7 +27,6 @@ public abstract class ASTEnumerator extends ASTNode implements IASTEnumerator, I
private IASTExpression value; private IASTExpression value;
private IValue integralValue; private IValue integralValue;
public ASTEnumerator() { public ASTEnumerator() {
} }

View file

@ -52,7 +52,6 @@ import org.eclipse.core.runtime.CoreException;
/** /**
* @author Bryan Wilkinson * @author Bryan Wilkinson
*
*/ */
class PDOMCPPClassSpecialization extends PDOMCPPSpecialization implements class PDOMCPPClassSpecialization extends PDOMCPPSpecialization implements
ICPPClassSpecialization, IPDOMMemberOwner, IIndexType, IPDOMCPPClassType { ICPPClassSpecialization, IPDOMMemberOwner, IIndexType, IPDOMCPPClassType {
@ -145,8 +144,6 @@ class PDOMCPPClassSpecialization extends PDOMCPPSpecialization implements
return fScope; return fScope;
} }
public PDOMCPPBase getFirstBase() throws CoreException { public PDOMCPPBase getFirstBase() throws CoreException {
int rec = getDB().getInt(record + FIRSTBASE); int rec = getDB().getInt(record + FIRSTBASE);
return rec != 0 ? new PDOMCPPBase(getLinkage(), rec) : null; return rec != 0 ? new PDOMCPPBase(getLinkage(), rec) : null;
@ -359,7 +356,6 @@ class PDOMCPPClassSpecialization extends PDOMCPPSpecialization implements
list.addMember(member); list.addMember(member);
} }
public void acceptUncached(IPDOMVisitor visitor) throws CoreException { public void acceptUncached(IPDOMVisitor visitor) throws CoreException {
PDOMNodeLinkedList list = new PDOMNodeLinkedList(getLinkage(), record + MEMBERLIST); PDOMNodeLinkedList list = new PDOMNodeLinkedList(getLinkage(), record + MEMBERLIST);
list.accept(visitor); list.accept(visitor);