Skip to content

Commit

Permalink
Minor changes to appease travis-ci compiler
Browse files Browse the repository at this point in the history
  • Loading branch information
billkalter committed Apr 20, 2017
1 parent e54213c commit 8edf0ad
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ public Set<EmoRoleKey> getRoles() {
}

public CreateEmoApiKeyRequest setRoles(Set<EmoRoleKey> roles) {
_roles = Objects.firstNonNull(roles, ImmutableSet.of());
_roles = Objects.firstNonNull(roles, ImmutableSet.<EmoRoleKey>of());
return this;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ public Set<String> getPermissions() {
}

public CreateEmoRoleRequest setPermissions(Set<String> permissions) {
_permissions = Objects.firstNonNull(permissions, ImmutableSet.of());
_permissions = Objects.firstNonNull(permissions, ImmutableSet.<String>of());
return this;
}
}

0 comments on commit 8edf0ad

Please sign in to comment.