Skip to content

Commit

Permalink
fix inverted hasValue() return
Browse files Browse the repository at this point in the history
  • Loading branch information
blueysh authored Nov 12, 2022
1 parent c595370 commit c55a35f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/sap4j/Argument.java
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ public String getValue() {
* @return Whether the argument has a value
*/
public boolean hasValue() {
return this.value == null;
return this.value != null;
}

@Override
Expand Down

0 comments on commit c55a35f

Please sign in to comment.