corrected errors reported by MethodParamPadCheck
This commit is contained in:
parent
43a05ed66d
commit
9e5fe92b7c
|
|
@ -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;
|
||||
|
|
|
|||
|
|
@ -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()) {
|
||||
|
|
|
|||
|
|
@ -50,7 +50,7 @@ public class ContainerManagedMethodChecker
|
|||
final String name = nameAST.getText();
|
||||
|
||||
if (name.startsWith("ejbSelect")) {
|
||||
checkSelectMethod (aMethodAST);
|
||||
checkSelectMethod(aMethodAST);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Reference in New Issue