CE-882 Checkstyle

This commit is contained in:
2024-04-25 12:14:41 -05:00
parent 05b1c70a1b
commit 96bd60e795
2 changed files with 13 additions and 7 deletions

View File

@ -51,6 +51,8 @@ public class RecordSecurityLock implements Cloneable
private LockScope lockScope = LockScope.READ_AND_WRITE;
/*******************************************************************************
**
*******************************************************************************/
@ -294,13 +296,13 @@ public class RecordSecurityLock implements Cloneable
@Override
public String toString()
{
return "RecordSecurityLock{" +
"securityKeyType='" + securityKeyType + '\'' +
", fieldName='" + fieldName + '\'' +
", joinNameChain=" + joinNameChain +
", nullValueBehavior=" + nullValueBehavior +
", lockScope=" + lockScope +
'}';
return "RecordSecurityLock{"
+ "securityKeyType='" + securityKeyType + '\''
+ ", fieldName='" + fieldName + '\''
+ ", joinNameChain=" + joinNameChain
+ ", nullValueBehavior=" + nullValueBehavior
+ ", lockScope=" + lockScope
+ '}';
}
}

View File

@ -603,6 +603,10 @@ public abstract class AbstractRDBMSAction
expectedNoOfParams = 0;
break;
}
default:
{
throw new IllegalArgumentException("Unexpected operator: " + criterion.getOperator());
}
}
if(expectedNoOfParams != null)