Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
arjvik committed Mar 1, 2018
1 parent 1dc1cd2 commit 4a3601e
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/com/arjvik/arjmart/api/item/ItemResource.java
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,6 @@ public Response getAll(@DefaultValue("0") @QueryParam("start") int start, @Defau
limit = MAX_RECORDS;
}
List<Item> items = itemDAO.getAllItems(start,limit);
System.err.println(items);
ResponseBuilder response = Response.ok(items);
if(start>0){
int newStart = Math.max(0, start-limit);
Expand Down

0 comments on commit 4a3601e

Please sign in to comment.