Skip to content

Commit 7dff02b

Browse files
committed
Fix import issue introduced in prior commit
Issue: SPR-9289
1 parent 3f5fa44 commit 7dff02b

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

spring-webmvc/src/main/java/org/springframework/web/servlet/mvc/method/annotation/PathVariableMapMethodArgumentResolver.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616

1717
package org.springframework.web.servlet.mvc.method.annotation;
1818

19+
import java.util.Collections;
1920
import java.util.LinkedHashMap;
2021
import java.util.Map;
2122

@@ -30,8 +31,6 @@
3031
import org.springframework.web.method.support.ModelAndViewContainer;
3132
import org.springframework.web.servlet.HandlerMapping;
3233

33-
import edu.emory.mathcs.backport.java.util.Collections;
34-
3534
/**
3635
* Resolves {@link Map} method arguments annotated with an @{@link PathVariable}
3736
* where the annotation does not specify a path variable name. The created

0 commit comments

Comments
 (0)