Removed unnecessary cast

git-svn-id: https://pmd.svn.sourceforge.net/svnroot/pmd/trunk@2539 51baf565-9d33-0410-a72c-fc3788e3496d
This commit is contained in:
Tom Copeland
2004-02-06 21:02:01 +00:00
parent 3decbe0db4
commit d369149697

View File

@ -905,7 +905,7 @@ void PrimarySuffix() :
| LOOKAHEAD(2) "." AllocationExpression()
| "[" Expression() "]"
| "." t=<IDENTIFIER> {s = t.image;} {jjtThis.setImage(s);}
| Arguments() {((ASTPrimarySuffix)jjtThis).setIsArguments();}
| Arguments() {jjtThis.setIsArguments();}
}
void Literal() :