mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-08-06 15:55:47 +02:00
Removed warnings.
This commit is contained in:
parent
bbb4bddce2
commit
3a9bfe8d4b
1 changed files with 15 additions and 15 deletions
|
@ -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
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Reference in a new issue