Skip to content

Commit

Permalink
Merge pull request #1 from protegeproject/WHO-setup
Browse files Browse the repository at this point in the history
change json constructor
  • Loading branch information
matthewhorridge authored Jul 11, 2024
2 parents 48993da + edd2bb8 commit 348028b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions 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 Expand Up @@ -42,7 +42,7 @@
<dependency>
<groupId>edu.stanford.protege</groupId>
<artifactId>webprotege-jackson</artifactId>
<version>0.9.2</version>
<version>0.9.3</version>
</dependency>
<dependency>
<groupId>com.google.auto.value</groupId>
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 348028b

Please sign in to comment.