Skip to content

Commit

Permalink
Merge pull request #436 from jgangemi/jae/rm-exception
Browse files Browse the repository at this point in the history
- remove unthrown IOException
  • Loading branch information
kohsuke authored Aug 30, 2018
2 parents 9afd1c5 + ca6d77c commit 7bf23ea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/org/kohsuke/github/GHOrganization.java
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ public GHRepository createRepository(String name, String description, String hom
* You use the returned builder to set various properties, then call {@link GHCreateRepositoryBuilder#create()}
* to finally createa repository.
*/
public GHCreateRepositoryBuilder createRepository(String name) throws IOException {
public GHCreateRepositoryBuilder createRepository(String name) {
return new GHCreateRepositoryBuilder(root,"/orgs/"+login+"/repos",name);
}

Expand Down

0 comments on commit 7bf23ea

Please sign in to comment.