Skip to content

Commit

Permalink
change json constructor
Browse files Browse the repository at this point in the history
  • Loading branch information
alexsilaghi committed Jun 27, 2024
1 parent 48993da commit 8a61162
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
</parent>
<groupId>edu.stanford.protege</groupId>
<artifactId>webprotege-entity-frames</artifactId>
<version>0.9.3-SNAPSHOT</version>
<version>0.9.3</version>
<name>webprotege-entity-frames</name>
<description>Data structures for dealing with entity frames</description>
<properties>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,13 +35,13 @@ public static PlainPropertyAnnotationValue get(@Nonnull OWLAnnotationProperty pr
}

@Nonnull
@JsonCreator
public static PlainPropertyAnnotationValue get(@Nonnull @JsonProperty(PROPERTY) OWLAnnotationProperty property,
@Nonnull @JsonProperty(VALUE) OWLAnnotationValue annotationValue) {
return get(property, annotationValue, State.ASSERTED);
}


@JsonCreator
@Nonnull
public static PlainPropertyAnnotationValue get(@Nonnull @JsonProperty(PROPERTY) OWLAnnotationProperty property,
@Nonnull @JsonProperty(VALUE) OWLAnnotationValueProxy annotationValueProxy) {
Expand Down

0 comments on commit 8a61162

Please sign in to comment.