Skip to content

Commit

Permalink
Merge pull request #41 from maksonlee/fix-change-details-cannot-be-shown
Browse files Browse the repository at this point in the history
Fix JENKINS-40114
  • Loading branch information
rsandell committed Nov 30, 2016
2 parents 9d40fd7 + 9542a6a commit 80af5cf
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions src/main/java/hudson/plugins/repo/ChangeLogEntry.java
Expand Up @@ -36,7 +36,7 @@
* A POJO containing information about a single change (git commit) in a git
* repository. These objects are used to build the change log page.
*/
class ChangeLogEntry extends ChangeLogSet.Entry {
public class ChangeLogEntry extends ChangeLogSet.Entry {

/**
* A POJO containing information about a modified file. A RepoChangeLogEntry
Expand Down Expand Up @@ -145,12 +145,12 @@ public EditType getEditType() {
// CS IGNORE ParameterNumber FOR NEXT 16 LINES. REASON: I've got no
// better ideas. Passing in all the variables here makes sense to me, even
// if it is ugly.
ChangeLogEntry(final String path, final String serverPath,
final String revision, final String authorName,
final String authorEmail, final String authorDate,
final String committerName, final String committerEmail,
final String committerDate, final String commitText,
final List<ModifiedFile> modifiedFiles) {
public ChangeLogEntry(final String path, final String serverPath,
final String revision, final String authorName,
final String authorEmail, final String authorDate,
final String committerName, final String committerEmail,
final String committerDate, final String commitText,
final List<ModifiedFile> modifiedFiles) {
this.path = path;
this.serverPath = serverPath;
this.revision = revision;
Expand Down

0 comments on commit 80af5cf

Please sign in to comment.