CPD Results

The following document contains the results of PMD's CPD 4.2.5.

Duplications

FileLine
org/apache/maven/plugins/patchtracker/tracking/jira/JiraPatchTracker.java82
org/apache/maven/plugins/patchtracker/tracking/jira/JiraPatchTracker.java121
            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 )