Skip to content

Commit

Permalink
Merge branch '2.18' of github.com:FasterXML/jackson-annotations into …
Browse files Browse the repository at this point in the history
…2.18
  • Loading branch information
cowtowncoder committed May 2, 2024
2 parents 2ab0559 + 9e200a0 commit 05755f6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
env:
JAVA_OPTS: "-XX:+TieredCompilation -XX:TieredStopAtLevel=1"
steps:
- uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633 # v4.1.2
- uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4
- name: Set up JDK
uses: actions/setup-java@99b8673ff64fbf99d8d325f52d9a5bdedb8483e9 # v4.2.1
with:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,12 @@ public enum PropertyAccessor
* Getters are methods used to get a POJO field value for serialization,
* or, under certain conditions also for de-serialization. Latter
* can be used for effectively setting Collection or Map values
* in absence of setters, iff returned value is not a copy but
* in absence of setters, if returned value is not a copy but
* actual value of the logical property.
*<p>
* Since version 1.3, this does <b>NOT</b> include "is getters" (methods
* that return boolean and named 'isXxx' for property 'xxx'); instead,
* {@link #IS_GETTER} is used}.
* {@link #IS_GETTER} is used.
*/
GETTER,

Expand Down Expand Up @@ -63,8 +63,6 @@ public enum PropertyAccessor
ALL
;

private PropertyAccessor() { }

public boolean creatorEnabled() {
return (this == CREATOR) || (this == ALL);
}
Expand Down

0 comments on commit 05755f6

Please sign in to comment.