diff --git a/pom.xml b/pom.xml index 9a0d4142..573062b4 100644 --- a/pom.xml +++ b/pom.xml @@ -5,7 +5,7 @@ com.bullhorn sdk-rest - 2.3.5 + 2.3.6 jar Bullhorn REST SDK diff --git a/src/main/java/com/bullhornsdk/data/util/ReadOnly.java b/src/main/java/com/bullhornsdk/data/util/ReadOnly.java index ef3e3184..432b5263 100644 --- a/src/main/java/com/bullhornsdk/data/util/ReadOnly.java +++ b/src/main/java/com/bullhornsdk/data/util/ReadOnly.java @@ -1,8 +1,5 @@ package com.bullhornsdk.data.util; -import com.fasterxml.jackson.annotation.JacksonAnnotationsInside; -import com.fasterxml.jackson.annotation.JsonProperty; - import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; @@ -10,7 +7,5 @@ @Retention(RetentionPolicy.RUNTIME) @Target({ElementType.METHOD, ElementType.FIELD}) -@JacksonAnnotationsInside -@JsonProperty(access = JsonProperty.Access.WRITE_ONLY) public @interface ReadOnly { }