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; private LockScope lockScope = LockScope.READ_AND_WRITE;
/******************************************************************************* /*******************************************************************************
** **
*******************************************************************************/ *******************************************************************************/
@ -294,13 +296,13 @@ public class RecordSecurityLock implements Cloneable
@Override @Override
public String toString() public String toString()
{ {
return "RecordSecurityLock{" + return "RecordSecurityLock{"
"securityKeyType='" + securityKeyType + '\'' + + "securityKeyType='" + securityKeyType + '\''
", fieldName='" + fieldName + '\'' + + ", fieldName='" + fieldName + '\''
", joinNameChain=" + joinNameChain + + ", joinNameChain=" + joinNameChain
", nullValueBehavior=" + nullValueBehavior + + ", nullValueBehavior=" + nullValueBehavior
", lockScope=" + lockScope + + ", lockScope=" + lockScope
'}'; + '}';
} }
} }

View File

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