Skip to content

Commit

Permalink
Removed unnecessary annotation
Browse files Browse the repository at this point in the history
  • Loading branch information
danieljamesscott committed Jul 2, 2014
1 parent 3afab2e commit 5114fbb
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions src/main/java/Resource.java
Original file line number Diff line number Diff line change
Expand Up @@ -7,17 +7,15 @@

import javax.ws.rs.GET;
import javax.ws.rs.Path;
import javax.ws.rs.Produces;
import javax.ws.rs.QueryParam;
import javax.ws.rs.core.MediaType;
import javax.ws.rs.core.Response;

@Api(value = "/resource", description = "About the nessie application") @Path("/resource") @Produces(MediaType.APPLICATION_JSON)
@Api(value = "/resource", description = "About the application") @Path("/resource")
public class Resource
{
@ApiOperation(
value = "About nessie",
notes = "About nessie",
value = "About",
notes = "About",
response = Response.class) @GET @Timed
@ApiImplicitParams(value = {@ApiImplicitParam(name = "qparam", value = "Query Parameter", dataType = "string", required = true, paramType = "query")})

Expand Down

0 comments on commit 5114fbb

Please sign in to comment.