CPD Results
The following document contains the results of PMD's CPD 4.2.5.
Duplications
| File | Line |
|---|---|
| org/apache/maven/plugins/patchtracker/tracking/jira/JiraPatchTracker.java | 82 |
| org/apache/maven/plugins/patchtracker/tracking/jira/JiraPatchTracker.java | 121 |
jiraSession.addCommentToIssue( remoteIssue.getKey(), patchTrackerRequest.getDescription() );
return new PatchTrackerResult().setPatchId( remoteIssue.getKey() ).setPatchUrl(
extractBaseUrl( patchTrackerRequest.getUrl() ) + "/browse/" + remoteIssue.getKey() );
}
catch ( RemoteAuthenticationException e )
{
throw new PatchTrackerException( e.getMessage(), e );
}
catch ( RemoteException e )
{
throw new PatchTrackerException( e.getMessage(), e );
}
catch ( java.rmi.RemoteException e )
{
throw new PatchTrackerException( e.getMessage(), e );
}
}
public JiraSession createSession( PatchTrackerRequest patchTrackerRequest, Log log ) | |