Showing
1 changed file
with
2 additions
and
2 deletions
... | @@ -12,7 +12,7 @@ public interface PublisherSearchRepository { | ... | @@ -12,7 +12,7 @@ public interface PublisherSearchRepository { |
12 | * @param indexedPublisher IndexedPublisher to be indexed | 12 | * @param indexedPublisher IndexedPublisher to be indexed |
13 | * @return IndexedPublisher | 13 | * @return IndexedPublisher |
14 | */ | 14 | */ |
15 | - public IndexedPublisher save(IndexedPublisher indexedPublisher) throws IndexingException; | 15 | + IndexedPublisher save(IndexedPublisher indexedPublisher) throws IndexingException; |
16 | 16 | ||
17 | /** | 17 | /** |
18 | * Searches for IndexedPublishers | 18 | * Searches for IndexedPublishers |
... | @@ -20,5 +20,5 @@ public interface PublisherSearchRepository { | ... | @@ -20,5 +20,5 @@ public interface PublisherSearchRepository { |
20 | * @param string String looked for in IndexedPublishers | 20 | * @param string String looked for in IndexedPublishers |
21 | * @return list of matching IndexedPublishers | 21 | * @return list of matching IndexedPublishers |
22 | */ | 22 | */ |
23 | - public List<IndexedPublisher> search(String string) throws SearchingException; | 23 | + List<IndexedPublisher> search(String string) throws SearchingException; |
24 | } | 24 | } | ... | ... |
-
Please register or login to post a comment