Skip to content

Commit

Permalink
Remove unnecessary methods
Browse files Browse the repository at this point in the history
  • Loading branch information
Kevin Yen committed Apr 16, 2016
1 parent ef739d9 commit 1fff4ac
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions src/main/java/com/liferay/jenkins/tools/JobsGetter.java
Original file line number Diff line number Diff line change
Expand Up @@ -107,12 +107,6 @@ public static Set<Job> getJobs(JsonGetter jsonGetter, String jenkinsURL)

JSONObject rootJson = jsonGetter.getJson(sb.toString());

return getJobs(rootJson);
}

public static Set<Job> getJobs(JSONObject rootJson)
throws Exception {

Set<Job> jobs = new HashSet<>();

for (JSONObject jobJson : getJobJsons(rootJson)) {
Expand Down

0 comments on commit 1fff4ac

Please sign in to comment.