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;
|
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
|
||||||
'}';
|
+ '}';
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -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)
|
||||||
|
Reference in New Issue
Block a user