Skip to content

Commit

Permalink
Change constructor of StringValue
Browse files Browse the repository at this point in the history
  • Loading branch information
Julian Mendez committed Mar 13, 2018
1 parent 5293899 commit 76ac403
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ public StringValue() {
* string
*/
public StringValue(String str) {
this.str = Objects.isNull(str) ? "" : str.trim();
this.str = Objects.isNull(str) ? "" : str;
}

/**
Expand Down

0 comments on commit 76ac403

Please sign in to comment.