Skip to content

Commit

Permalink
Update GitHub actions
Browse files Browse the repository at this point in the history
  • Loading branch information
oleg-cherednik committed Nov 10, 2023
1 parent 1ecd6be commit faf7370
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
@NoArgsConstructor(access = AccessLevel.PRIVATE)
public final class ReflectionUtils {

@SuppressWarnings("PMD.AvoidAccessibilityAlteration")
public static <T> T getFieldValue(Object obj, String fieldName) {
try {
Field field = getField(obj.getClass(), fieldName);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@
public class StringJacksonUtilsTest {

@BeforeClass
@SuppressWarnings("PMD.AvoidAccessibilityAlteration")
public static void init() {
try {
Constructor<JacksonUtils> constructor = JacksonUtils.class.getDeclaredConstructor();
Expand Down

0 comments on commit faf7370

Please sign in to comment.