Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@
* @param <I> intermediate data type
* @since 4.0.0
*/
@FunctionalInterface
public interface FieldDiscoverer<I> {

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@
* @param <V> value type
* @since 4.0.0
*/
@FunctionalInterface
public interface Constraint<V> {

/**
Expand All @@ -51,6 +52,7 @@ public interface Constraint<V> {
* @param <V> data type
* @since 4.0.0
*/
@FunctionalInterface
interface Factory<A extends Annotation, V> {

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@
*
* @since 4.0.0
*/
@FunctionalInterface
public interface NodeResolver {

/**
Expand All @@ -58,6 +59,7 @@ public interface NodeResolver {
*
* @since 4.0.0
*/
@FunctionalInterface
interface Factory {

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@
*
* @since 4.2.0
*/
@FunctionalInterface
public interface PostProcessor {

/**
Expand All @@ -51,6 +52,7 @@ public interface PostProcessor {
*
* @since 4.2.0
*/
@FunctionalInterface
interface Factory {

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -202,6 +202,7 @@ void testNestedObjectWithComments() throws SerializationException {
}

@ConfigSerializable
@SuppressWarnings("PMD.ImplicitFunctionalInterface")
private interface ParentInterface {
String test();
}
Expand Down
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ indra = "3.1.3"
junit="5.12.0"
ktlint="0.49.1"
ktfmt="0.54"
pmd = "7.11.0"
pmd = "7.12.0"
spotless = "7.0.3"

[libraries]
Expand Down