Skip to content

Commit

Permalink
Merge pull request #101 from farmdawgnation/final-answer
Browse files Browse the repository at this point in the history
Un-finalize a handful of classes.
  • Loading branch information
kohsuke committed Jul 3, 2014
2 parents 7e35716 + d83961e commit 219916e
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* The response that is returned when updating
* repository content.
**/
public final class GHContentUpdateResponse {
public class GHContentUpdateResponse {
private GHContent content;
private GHCommit commit;

Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/kohsuke/github/GHGist.java
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
* @see GitHub#getGist(String)
* @see GitHub#createGist()
*/
public final class GHGist {
public class GHGist {
/*package almost final*/ GHUser owner;
/*package almost final*/ GitHub root;

Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/kohsuke/github/GHHook.java
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
/**
* @author Kohsuke Kawaguchi
*/
public final class GHHook {
public class GHHook {
/**
* Repository that the hook belongs to.
*/
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/kohsuke/github/GHPersonSet.java
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
*
* @author Kohsuke Kawaguchi
*/
public final class GHPersonSet<T extends GHPerson> extends HashSet<T> {
public class GHPersonSet<T extends GHPerson> extends HashSet<T> {
public GHPersonSet() {
}

Expand Down

0 comments on commit 219916e

Please sign in to comment.