change RetransformCommand and DumpClassCommand limit option description to match @DefaultValue annotation (#2086)

pull/2093/head
iamgd67 3 years ago committed by GitHub
parent 665021a6cb
commit caea6c5083
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -92,7 +92,7 @@ public class DumpClassCommand extends AnnotatedCommand {
} }
@Option(shortName = "l", longName = "limit") @Option(shortName = "l", longName = "limit")
@Description("The limit of dump classes size, default value is 5") @Description("The limit of dump classes size, default value is 50")
@DefaultValue("50") @DefaultValue("50")
public void setLimit(int limit) { public void setLimit(int limit) {
this.limit = limit; this.limit = limit;

@ -124,7 +124,7 @@ public class RetransformCommand extends AnnotatedCommand {
} }
@Option(longName = "limit") @Option(longName = "limit")
@Description("The limit of dump classes size, default value is 5") @Description("The limit of dump classes size, default value is 50")
@DefaultValue("50") @DefaultValue("50")
public void setLimit(int limit) { public void setLimit(int limit) {
this.limit = limit; this.limit = limit;

Loading…
Cancel
Save