Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
align construction abilities with all the rest cli-parameters

Signed-off-by: eparovyshnaya <[email protected]>
  • Loading branch information
eparovyshnaya committed Feb 19, 2022
1 parent 4698fed commit b7de305
Showing 1 changed file with 8 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*******************************************************************************
* Copyright (c) 2020, 2021 ArSysOp
* Copyright (c) 2020, 2022 ArSysOp
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License 2.0 which is available at
Expand All @@ -19,6 +19,13 @@
*/
public final class Port extends CliParameter<Integer> {

/**
* @since 2.3
*/
public Port() {
super(8090);
}

public Port(int lazy) {
super(lazy);
}
Expand Down

0 comments on commit b7de305

Please sign in to comment.