inheriting javadoc and designating as overridden

This commit is contained in:
Kohsuke Kawaguchi
2012-01-03 11:12:18 -08:00
parent 4a4a469ca4
commit bf65a746b0

View File

@@ -43,11 +43,7 @@ public class GHOrganization extends GHPerson {
return root.retrieveWithAuth("/organizations/"+login+"/teams",JsonTeams.class).toMap(this);
}
/**
*
* @return
* null if the repository was not found
*/
@Override
public GHRepository getRepository(String name) throws IOException {
try {
return root.retrieveWithAuth3("/repos/" + login + '/' + name, GHRepository.class).wrap(root);