Skip to content

Commit

Permalink
tidy
Browse files Browse the repository at this point in the history
  • Loading branch information
jdillon committed Jun 10, 2017
1 parent 862b4b8 commit 65476cd
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,8 @@ public String toString() {
// Helpers
//

private static String emptyToNull(final String value) {
@Nullable
private static String emptyToNull(@Nullable final String value) {
if (value == null || value.isEmpty()) {
return null;
}
Expand Down

0 comments on commit 65476cd

Please sign in to comment.