Skip to content

Commit

Permalink
ARTEMIS-3376 fixed descriptions of option --no-anycast and option --n…
Browse files Browse the repository at this point in the history
…o-multicast
  • Loading branch information
Erwin Dondorp authored and brusdev committed May 25, 2022
1 parent 3c6f42b commit 3ea18a8
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,13 +28,13 @@ public abstract class AddressAbstract extends AbstractAction {
@Option(name = "--anycast", description = "It will determine this address as anycast")
private Boolean anycast;

@Option(name = "--no-anycast", description = "It will determine this address as anycast")
@Option(name = "--no-anycast", description = "It will not determine this address as anycast")
private Boolean noAnycast;

@Option(name = "--multicast", description = "It will determine this address as multicast")
private Boolean multicast;

@Option(name = "--no-multicast", description = "It will determine this address as multicast")
@Option(name = "--no-multicast", description = "It will not determine this address as multicast")
private Boolean noMulticast;


Expand Down

0 comments on commit 3ea18a8

Please sign in to comment.