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

Removed warnings.

This commit is contained in:
John Camelon 2004-08-05 21:47:27 +00:00
parent bbb4bddce2
commit 3a9bfe8d4b

View file

@ -2063,21 +2063,21 @@ public class QuickParseASTTests extends BaseASTTest
// validateToken( tokens[12], IToken.tSEMI ); // validateToken( tokens[12], IToken.tSEMI );
// validateToken( tokens[13], IToken.tRBRACE ); // validateToken( tokens[13], IToken.tRBRACE );
// } // }
/** // /**
* @param token // * @param token
* @param string // * @param string
*/ // */
private void validateIdentifier(IToken token, String identifierName ) { // private void validateIdentifier(IToken token, String identifierName ) {
validateToken( token, IToken.tIDENTIFIER); // validateToken( token, IToken.tIDENTIFIER);
assertEquals( token.getImage(), identifierName ); // assertEquals( token.getImage(), identifierName );
} // }
/** // /**
* @param token // * @param token
* @param i // * @param i
*/ // */
private void validateToken(IToken token, int signal) { // private void validateToken(IToken token, int signal) {
assertEquals( token.getType(), signal ); // assertEquals( token.getType(), signal );
} // }
public void testBug47752() throws Exception public void testBug47752() throws Exception
{ {