corrected errors reported by MethodParamPadCheck

This commit is contained in:
Rick Giles 2004-01-21 01:23:25 +00:00
parent 43a05ed66d
commit 9e5fe92b7c
5 changed files with 6 additions and 6 deletions

View File

@ -74,7 +74,7 @@ public class FilterSet
}
/** @see java.lang.Object#equals(java.lang.Object) */
public boolean equals (Object aObject)
public boolean equals(Object aObject)
{
if (aObject instanceof FilterSet) {
final FilterSet other = (FilterSet) aObject;

View File

@ -350,7 +350,7 @@ class FrameStack
*/
void enter(LexicalFrame aNewFrame)
{
mFrameList.addFirst (aNewFrame);
mFrameList.addFirst(aNewFrame);
}
/** Leave a scope, i.e. pop a frame from the stack. */
@ -373,7 +373,7 @@ class FrameStack
* @param aNameToFind the name we're looking for
* @return the frame in which it was found, or null if not found
*/
LexicalFrame findFrame (String aNameToFind)
LexicalFrame findFrame(String aNameToFind)
{
final Iterator it = mFrameList.iterator();
while (it.hasNext()) {

View File

@ -50,7 +50,7 @@ public class ContainerManagedMethodChecker
final String name = nameAST.getText();
if (name.startsWith("ejbSelect")) {
checkSelectMethod (aMethodAST);
checkSelectMethod(aMethodAST);
}
}

View File

@ -114,7 +114,7 @@ class CSVFilter implements IntFilter
}
/** @see java.lang.Object#equals(java.lang.Object) */
public boolean equals (Object aObject)
public boolean equals(Object aObject)
{
if (aObject instanceof CSVFilter) {
final CSVFilter other = (CSVFilter) aObject;

View File

@ -69,7 +69,7 @@ public class SuppressionFilter
}
/** @see java.lang.Object#equals(java.lang.Object) */
public boolean equals (Object aObject)
public boolean equals(Object aObject)
{
if (aObject instanceof SuppressionFilter) {
final SuppressionFilter other = (SuppressionFilter) aObject;