diff --git a/pom.xml b/pom.xml
index 65137dd..cb7d154 100644
--- a/pom.xml
+++ b/pom.xml
@@ -10,7 +10,7 @@
edu.stanford.protege
webprotege-entity-frames
- 0.9.3-SNAPSHOT
+ 0.9.3
webprotege-entity-frames
Data structures for dealing with entity frames
diff --git a/src/main/java/edu/stanford/protege/webprotege/frame/PlainPropertyAnnotationValue.java b/src/main/java/edu/stanford/protege/webprotege/frame/PlainPropertyAnnotationValue.java
index 9b86573..095dd56 100644
--- a/src/main/java/edu/stanford/protege/webprotege/frame/PlainPropertyAnnotationValue.java
+++ b/src/main/java/edu/stanford/protege/webprotege/frame/PlainPropertyAnnotationValue.java
@@ -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) {