Skip to content

Commit bc60b50

Browse files
committed
core/transformation: Correct annotation on return value of action
1 parent a1b3cf1 commit bc60b50

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/src/main/java/org/spongepowered/configurate/transformation/TransformAction.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,6 +130,6 @@ static <V> TransformAction set(Class<V> type, Supplier<V> valueSupplier) {
130130
* @return a modified path, or null if the path is to stay the same
131131
* @since 4.0.0
132132
*/
133-
@Nullable Object @Nullable[] visitPath(NodePath path, ConfigurationNode value) throws ConfigurateException;
133+
Object @Nullable[] visitPath(NodePath path, ConfigurationNode value) throws ConfigurateException;
134134

135135
}

0 commit comments

Comments
 (0)