Showing
1 changed file
with
1 additions
and
1 deletions
... | @@ -48,7 +48,7 @@ public class SearchView implements Serializable { | ... | @@ -48,7 +48,7 @@ public class SearchView implements Serializable { |
48 | * @return whether search with non-empty string has returned an empty result for publishers | 48 | * @return whether search with non-empty string has returned an empty result for publishers |
49 | */ | 49 | */ |
50 | public boolean publisherSearchEmpty() { | 50 | public boolean publisherSearchEmpty() { |
51 | - return ((!searchString.isEmpty()) && publisherVersions.isEmpty()); | 51 | + return !searchString.isEmpty() && publisherVersions.isEmpty(); |
52 | } | 52 | } |
53 | 53 | ||
54 | /** | 54 | /** | ... | ... |
-
Please register or login to post a comment