Skip to content

Commit

Permalink
Merge pull request #241 from quintesse/chore_report_version
Browse files Browse the repository at this point in the history
chore: bump top-level report version
  • Loading branch information
jponge authored Jul 16, 2024
2 parents 098e88c + 4961c65 commit a5c6bf5
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ public void generateReport(Filtering masking) {

// Check for -Xmn and -Xmx options on the command line
for (String arg : inputArguments) {
if (arg.startsWith("-Xmn")) {
if (arg.startsWith("-Xms")) {
heapMin = getMemorySize(arg.substring(4)).orElse(heapMin);
} else if (arg.startsWith("-Xmx")) {
heapMax = getMemorySize(arg.substring(4)).orElse(heapMax);
Expand Down Expand Up @@ -283,6 +283,6 @@ static OptionalLong getMemorySize(String size) {

@Override
public String getVersion() {
return "1.0.0";
return "1.0.1";
}
}

0 comments on commit a5c6bf5

Please sign in to comment.