Skip to content

Commit

Permalink
[FIXED JENKINS-14926] Implement the parent interface's getAffectedFil…
Browse files Browse the repository at this point in the history
…es() method.
  • Loading branch information
Joe Hansche authored and Bjarke Freund-Hansen committed Nov 14, 2012
1 parent c7bbc7c commit 39dc567
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions src/main/java/hudson/plugins/repo/ChangeLogEntry.java
Expand Up @@ -260,6 +260,15 @@ public List<ModifiedFile> getModifiedFiles() {
return modifiedFiles;
}

/**
* Returns a set of paths in the workspace that was
* affected by this change.
*/
@Override
public List<ModifiedFile> getAffectedFiles() {
return modifiedFiles;
}

@Override
public String getMsg() {
return getCommitText();
Expand Down

0 comments on commit 39dc567

Please sign in to comment.