The following document contains the results of PMD's CPD 5.6.1.
| File | Line |
|---|---|
| org\apache\maven\scm\provider\integrity\command\lock\IntegrityLockCommand.java | 67 |
| org\apache\maven\scm\provider\integrity\command\unlock\IntegrityUnlockCommand.java | 80 |
Response res = siSandbox.lock( memberFile, filename );
int exitCode = res.getExitCode();
boolean success = ( exitCode == 0 ? true : false );
result = new ScmResult( res.getCommandString(), "", "Exit Code: " + exitCode, success );
}
catch ( APIException aex )
{
ExceptionHandler eh = new ExceptionHandler( aex );
getLogger().error( "MKS API Exception: " + eh.getMessage() );
getLogger().info( eh.getCommand() + " exited with return code " + eh.getExitCode() );
result = new ScmResult( eh.getCommand(), eh.getMessage(), "Exit Code: " + eh.getExitCode(), false );
}
return result;
}
/**
* {@inheritDoc}
*/
@Override
protected ScmResult executeCommand( ScmProviderRepository repository, ScmFileSet fileSet,
CommandParameters parameters )
throws ScmException
{ | |