From 3a9bfe8d4bc41228658b604cff78ae4e4e84450e Mon Sep 17 00:00:00 2001 From: John Camelon Date: Thu, 5 Aug 2004 21:47:27 +0000 Subject: [PATCH] Removed warnings. --- .../core/parser/tests/QuickParseASTTests.java | 30 +++++++++---------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/core/org.eclipse.cdt.core.tests/parser/org/eclipse/cdt/core/parser/tests/QuickParseASTTests.java b/core/org.eclipse.cdt.core.tests/parser/org/eclipse/cdt/core/parser/tests/QuickParseASTTests.java index 8ec32093b08..f92ac0b0555 100644 --- a/core/org.eclipse.cdt.core.tests/parser/org/eclipse/cdt/core/parser/tests/QuickParseASTTests.java +++ b/core/org.eclipse.cdt.core.tests/parser/org/eclipse/cdt/core/parser/tests/QuickParseASTTests.java @@ -2063,21 +2063,21 @@ public class QuickParseASTTests extends BaseASTTest // validateToken( tokens[12], IToken.tSEMI ); // validateToken( tokens[13], IToken.tRBRACE ); // } - /** - * @param token - * @param string - */ - private void validateIdentifier(IToken token, String identifierName ) { - validateToken( token, IToken.tIDENTIFIER); - assertEquals( token.getImage(), identifierName ); - } - /** - * @param token - * @param i - */ - private void validateToken(IToken token, int signal) { - assertEquals( token.getType(), signal ); - } +// /** +// * @param token +// * @param string +// */ +// private void validateIdentifier(IToken token, String identifierName ) { +// validateToken( token, IToken.tIDENTIFIER); +// assertEquals( token.getImage(), identifierName ); +// } +// /** +// * @param token +// * @param i +// */ +// private void validateToken(IToken token, int signal) { +// assertEquals( token.getType(), signal ); +// } public void testBug47752() throws Exception {