Skip to content

Commit

Permalink
Update elide-core/src/main/java/com/yahoo/elide/core/EntityDictionary…
Browse files Browse the repository at this point in the history
….java

Co-Authored-By: Jon Kilroy <[email protected]>
  • Loading branch information
aklish and jkusa authored Feb 6, 2020
1 parent b79d6b1 commit 1faa737
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -833,7 +833,7 @@ public <T> void initializeEntity(T entity) {
public boolean isTransferable(Class<?> entityClass) {
NonTransferable nonTransferable = getAnnotation(entityClass, NonTransferable.class);

return (nonTransferable == null || ! nonTransferable.enabled());
return (nonTransferable == null || !nonTransferable.enabled());
}

/**
Expand Down

0 comments on commit 1faa737

Please sign in to comment.