Toggle navigation
Toggle navigation
This project
Loading...
Sign in
grogv3
/
grog-cubi
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Authored by
Jean-Francois Leveque
2017-03-06 12:52:50 +0100
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
af74cf2d69d6a2f44a0c973f99dfae64482b6b9b
af74cf2d
1 parent
c764757c
Simplification
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
src/main/java/org/legrog/web/xyz/SearchView.java
src/main/java/org/legrog/web/xyz/SearchView.java
View file @
af74cf2
...
...
@@ -48,7 +48,7 @@ public class SearchView implements Serializable {
* @return whether search with non-empty string has returned an empty result for publishers
*/
public
boolean
publisherSearchEmpty
()
{
return
((!
searchString
.
isEmpty
())
&&
publisherVersions
.
isEmpty
()
);
return
!
searchString
.
isEmpty
()
&&
publisherVersions
.
isEmpty
(
);
}
/**
...
...
Please
register
or
login
to post a comment