From 47f80dd630edd9dce82641df79bc731ba8302d13 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 23 Apr 2024 13:02:36 -0700 Subject: [PATCH 1/4] Bump actions/checkout from 4.1.2 to 4.1.3 in the github-actions group (#249) --- .github/workflows/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index ac07df26..96018c01 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -31,7 +31,7 @@ jobs: env: JAVA_OPTS: "-XX:+TieredCompilation -XX:TieredStopAtLevel=1" steps: - - uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633 # v4.1.2 + - uses: actions/checkout@1d96c772d19495a3b5c517cd2bc0cb401ea0529f # v4.1.3 - name: Set up JDK uses: actions/setup-java@99b8673ff64fbf99d8d325f52d9a5bdedb8483e9 # v4.2.1 with: From 7f7619954e9e33b84e939ff50edc8bf966a00134 Mon Sep 17 00:00:00 2001 From: Philzen Date: Mon, 29 Apr 2024 00:51:00 +0200 Subject: [PATCH 2/4] Remove redundant no-arg constructor (#253) --- .../java/com/fasterxml/jackson/annotation/PropertyAccessor.java | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/main/java/com/fasterxml/jackson/annotation/PropertyAccessor.java b/src/main/java/com/fasterxml/jackson/annotation/PropertyAccessor.java index ef4b846c..504d8283 100644 --- a/src/main/java/com/fasterxml/jackson/annotation/PropertyAccessor.java +++ b/src/main/java/com/fasterxml/jackson/annotation/PropertyAccessor.java @@ -63,8 +63,6 @@ public enum PropertyAccessor ALL ; - private PropertyAccessor() { } - public boolean creatorEnabled() { return (this == CREATOR) || (this == ALL); } From 2c0aabce1a004d32f064eb9dc6e5ea9cadb09ed4 Mon Sep 17 00:00:00 2001 From: Philzen Date: Mon, 29 Apr 2024 00:51:29 +0200 Subject: [PATCH 3/4] Fix "iff" typo and unpaired curly bracket in Javadoc (#252) --- .../com/fasterxml/jackson/annotation/PropertyAccessor.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/com/fasterxml/jackson/annotation/PropertyAccessor.java b/src/main/java/com/fasterxml/jackson/annotation/PropertyAccessor.java index 504d8283..7db6650e 100644 --- a/src/main/java/com/fasterxml/jackson/annotation/PropertyAccessor.java +++ b/src/main/java/com/fasterxml/jackson/annotation/PropertyAccessor.java @@ -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. *

* Since version 1.3, this does NOT 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, From 9e200a090c9ea7274f1a57cc06f3069d27a2f713 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 29 Apr 2024 18:36:46 -0700 Subject: [PATCH 4/4] Bump actions/checkout from 4.1.3 to 4.1.4 in the github-actions group (#254) --- .github/workflows/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 96018c01..fc42111b 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -31,7 +31,7 @@ jobs: env: JAVA_OPTS: "-XX:+TieredCompilation -XX:TieredStopAtLevel=1" steps: - - uses: actions/checkout@1d96c772d19495a3b5c517cd2bc0cb401ea0529f # v4.1.3 + - uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4 - name: Set up JDK uses: actions/setup-java@99b8673ff64fbf99d8d325f52d9a5bdedb8483e9 # v4.2.1 with: