From 48c8885041b05988372d27781721d261b91b9a44 Mon Sep 17 00:00:00 2001 From: Brian Clozel Date: Thu, 3 Apr 2025 15:10:34 +0200 Subject: [PATCH] Polishing See gh-1172 --- .../java/org/springframework/graphql/data/ArgumentValue.java | 1 + 1 file changed, 1 insertion(+) diff --git a/spring-graphql/src/main/java/org/springframework/graphql/data/ArgumentValue.java b/spring-graphql/src/main/java/org/springframework/graphql/data/ArgumentValue.java index 810e79a8..5defd64d 100644 --- a/spring-graphql/src/main/java/org/springframework/graphql/data/ArgumentValue.java +++ b/spring-graphql/src/main/java/org/springframework/graphql/data/ArgumentValue.java @@ -107,6 +107,7 @@ public final class ArgumentValue { /** * If a value is present, performs the given action with the value, otherwise does nothing. * @param action the action to be performed, if a value is present + * @since 1.4.0 */ public void ifPresent(Consumer action) { Assert.notNull(action, "Action is required");