Skip to content

Commit

Permalink
Adds missing semi-colon (#14)
Browse files Browse the repository at this point in the history
Signed-off-by: Sean Sundberg <[email protected]>
  • Loading branch information
seansund authored Jun 6, 2024
1 parent c5b56e6 commit 80a0643
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,6 @@ public static String formatListValue(Object inValue) {
}

public static String formatSimpleValue(Object current) {
return (current instanceof Number) ? current.toString() : "'" + current.toString() + "'"
return (current instanceof Number) ? current.toString() : "'" + current.toString() + "'";
}
}

0 comments on commit 80a0643

Please sign in to comment.