From 2ec630ef45a4358af378bdaadbefa7c98fbf234f Mon Sep 17 00:00:00 2001 From: Sam Brannen <104798+sbrannen@users.noreply.github.com> Date: Wed, 25 Feb 2026 10:50:21 +0100 Subject: [PATCH] Remove obsolete EMPTY_GROUPS constant in InvocableHandlerMethod See gh-36274 --- .../web/reactive/result/method/InvocableHandlerMethod.java | 2 -- 1 file changed, 2 deletions(-) diff --git a/spring-webflux/src/main/java/org/springframework/web/reactive/result/method/InvocableHandlerMethod.java b/spring-webflux/src/main/java/org/springframework/web/reactive/result/method/InvocableHandlerMethod.java index 15f664c8316..920e29b5ef8 100644 --- a/spring-webflux/src/main/java/org/springframework/web/reactive/result/method/InvocableHandlerMethod.java +++ b/spring-webflux/src/main/java/org/springframework/web/reactive/result/method/InvocableHandlerMethod.java @@ -81,8 +81,6 @@ public class InvocableHandlerMethod extends HandlerMethod { private static final Mono EMPTY_ARGS = Mono.just(new Object[0]); - private static final Class[] EMPTY_GROUPS = new Class[0]; - private static final Object NO_ARG_VALUE = new Object(); private static final boolean KOTLIN_REFLECT_PRESENT = KotlinDetector.isKotlinReflectPresent();