This is the codeAbility Sharing Platform! Learn more about the codeAbility Sharing Platform.

Skip to content
Snippets Groups Projects
Commit 49603ed8 authored by Daniel Rainer's avatar Daniel Rainer
Browse files

Remove unused import

parent db7150ce
2 merge requests!17Initial Merge to Prepare Release 1.0.0,!1Resolve "Metadaten konsolideren"
...@@ -14,7 +14,6 @@ import org.springframework.web.bind.annotation.RequestParam; ...@@ -14,7 +14,6 @@ import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.RestController; import org.springframework.web.bind.annotation.RestController;
import at.ac.uibk.gitsearch.es.model.DocumentInfo; import at.ac.uibk.gitsearch.es.model.DocumentInfo;
import at.ac.uibk.gitsearch.repository.search.SearchRepositoryConstants;
import at.ac.uibk.gitsearch.service.SearchService; import at.ac.uibk.gitsearch.service.SearchService;
import at.ac.uibk.gitsearch.service.dto.SearchInputDTO; import at.ac.uibk.gitsearch.service.dto.SearchInputDTO;
import at.ac.uibk.gitsearch.service.dto.SearchResultsDTO; import at.ac.uibk.gitsearch.service.dto.SearchResultsDTO;
...@@ -48,10 +47,10 @@ public class SearchResource { ...@@ -48,10 +47,10 @@ public class SearchResource {
log.debug("REST request to search {}", query); log.debug("REST request to search {}", query);
return searchService.searchResultPage(query,SearchInputDTO.PAGE_SIZE*query.getPage(), SearchInputDTO.PAGE_SIZE); return searchService.searchResultPage(query,SearchInputDTO.PAGE_SIZE*query.getPage(), SearchInputDTO.PAGE_SIZE);
} }
/** /**
* returns all keyword autocompletes for keyWord * returns all keyword autocompletes for keyWord
* *
* @param keyWordPrefix * @param keyWordPrefix
* @return * @return
* @throws IOException * @throws IOException
...@@ -63,7 +62,7 @@ public class SearchResource { ...@@ -63,7 +62,7 @@ public class SearchResource {
/** /**
* returns all creator autocompletes * returns all creator autocompletes
* *
* @param creatorPrefix * @param creatorPrefix
* @return * @return
* @throws IOException * @throws IOException
...@@ -75,7 +74,7 @@ public class SearchResource { ...@@ -75,7 +74,7 @@ public class SearchResource {
/** /**
* returns all contributor autocompletes * returns all contributor autocompletes
* *
* @param contributorPrefix * @param contributorPrefix
* @return * @return
* @throws IOException * @throws IOException
...@@ -87,7 +86,7 @@ public class SearchResource { ...@@ -87,7 +86,7 @@ public class SearchResource {
/** /**
* returns all programmingLanguage autocompletes for keyWord * returns all programmingLanguage autocompletes for keyWord
* *
* @param progammingLanguagePrefix * @param progammingLanguagePrefix
* @return * @return
* @throws IOException * @throws IOException
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment