Skip to content

Commit ab74c59

Browse files
committed
Fix for interfaces
1 parent 3252ee4 commit ab74c59

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

agr_indexer/src/main/java/org/alliancegenome/indexer/indexers/curation/interfaces/AGMPhenotypeAnnotationInterface.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,6 @@ public interface AGMPhenotypeAnnotationInterface extends ForPublicFindInterface<
2323
@Override
2424
@POST
2525
@Path("/findForPublic")
26-
@JsonView({View.PhenotypeAnnotationView.class})
26+
@JsonView({ View.PhenotypeAnnotationView.class })
2727
SearchResponse<AGMPhenotypeAnnotation> findForPublic(@DefaultValue("0") @QueryParam("page") Integer page, @DefaultValue("10") @QueryParam("limit") Integer limit, HashMap<String, Object> params);
2828
}

agr_indexer/src/main/java/org/alliancegenome/indexer/indexers/curation/interfaces/AllelePhenotypeAnnotationInterface.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,6 @@ public interface AllelePhenotypeAnnotationInterface extends ForPublicFindInterfa
2323
@Override
2424
@POST
2525
@Path("/findForPublic")
26-
@JsonView({View.PhenotypeAnnotationView.class})
26+
@JsonView({ View.PhenotypeAnnotationView.class })
2727
SearchResponse<AllelePhenotypeAnnotation> findForPublic(@DefaultValue("0") @QueryParam("page") Integer page, @DefaultValue("10") @QueryParam("limit") Integer limit, HashMap<String, Object> params);
2828
}

0 commit comments

Comments
 (0)