Skip to content

Commit

Permalink
nit: removing the response obj from indexsearch func
Browse files Browse the repository at this point in the history
  • Loading branch information
sumandas0 committed Feb 27, 2024
1 parent c81b156 commit 549c5be
Showing 1 changed file with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,6 @@
import javax.inject.Inject;
import javax.inject.Singleton;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import javax.ws.rs.Consumes;
import javax.ws.rs.DELETE;
import javax.ws.rs.GET;
Expand Down Expand Up @@ -388,8 +387,7 @@ public AtlasSearchResult searchWithParameters(SearchParameters parameters) throw
@Path("indexsearch")
@POST
@Timed
public AtlasSearchResult indexSearch(@Context HttpServletRequest servletRequest, IndexSearchParams parameters,
@Context HttpServletResponse response) throws AtlasBaseException {
public AtlasSearchResult indexSearch(@Context HttpServletRequest servletRequest, IndexSearchParams parameters) throws AtlasBaseException {
AtlasPerfTracer perf = null;
long startTime = System.currentTimeMillis();

Expand Down

0 comments on commit 549c5be

Please sign in to comment.