Skip to content

Commit

Permalink
3.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
MelanX committed Jun 18, 2022
1 parent 7a7c8e5 commit 4e1897e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version=3.0.0
version=3.0.1
Original file line number Diff line number Diff line change
Expand Up @@ -50,10 +50,10 @@ private CurseModpack(JsonElement element) throws IOException, NullPointerExcepti
json.get("files").getAsJsonArray().forEach(file -> {
projectIds.add(file.getAsJsonObject().get("projectID").getAsInt());
});
Map <Integer, ProjectInfo> projectInfoMap = wrapper.getProjects(projectIds);
Map<Integer, ProjectInfo> projectInfoMap = wrapper.getProjects(projectIds);

int i = 0;
final Integer total = json.get("files").getAsJsonArray().size();
final int total = projectIds.size();

for (JsonElement fileElement : json.get("files").getAsJsonArray()) {
JsonObject file = fileElement.getAsJsonObject();
Expand Down

0 comments on commit 4e1897e

Please sign in to comment.