mirror of
https://github.com/Kingsrook/qqq.git
synced 2025-07-18 05:01:07 +00:00
CE-882 Checkstyle
This commit is contained in:
@ -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
|
||||
+ '}';
|
||||
}
|
||||
|
||||
}
|
||||
|
@ -603,6 +603,10 @@ public abstract class AbstractRDBMSAction
|
||||
expectedNoOfParams = 0;
|
||||
break;
|
||||
}
|
||||
default:
|
||||
{
|
||||
throw new IllegalArgumentException("Unexpected operator: " + criterion.getOperator());
|
||||
}
|
||||
}
|
||||
|
||||
if(expectedNoOfParams != null)
|
||||
|
Reference in New Issue
Block a user