Skip to content

Commit

Permalink
Add required default constructor
Browse files Browse the repository at this point in the history
  • Loading branch information
frink182 committed Jun 30, 2023
1 parent 87a72dd commit 7d98e84
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/main/java/org/kohsuke/github/GHCommitFilesPage.java
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,13 @@ class GHCommitFilesPage {
private File[] files;

public GHCommitFilesPage() {
}
}

public GHCommitFilesPage(File[] files) {
this.files = files;
}
this.files = files;
}

/**
/**
* Gets the files.
*
* @param owner
Expand Down

0 comments on commit 7d98e84

Please sign in to comment.