Reports syntax errors and unused URI templates inside @Path annotations.

Example:


  @GET
  @Path("/{unused}") // Template 'unused' is never used
  public String get() {
    return "";
  }