Skip to content

Commit

Permalink
default to empty string instead of req.value
Browse files Browse the repository at this point in the history
  • Loading branch information
NicBOMB committed Aug 22, 2023
1 parent 81a7a8a commit d37b1ba
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public String getName() {
}

public String getSub(){
return requirement.hasSubRequirement() ? requirement.getSub() : requirement.getValue();
return requirement.hasSubRequirement() ? requirement.getSub() : "";
}

public String getValue(){
Expand Down

0 comments on commit d37b1ba

Please sign in to comment.