Merge pull request #7551 from oscr:redundant-array-test
* pr/7551: Remove redundant array creation for calling varargs method
This commit is contained in:
commit
41f29aeccc
2
spring-boot-actuator/src/test/java/org/springframework/boot/actuate/autoconfigure/EndpointMvcIntegrationTests.java
Normal file → Executable file
2
spring-boot-actuator/src/test/java/org/springframework/boot/actuate/autoconfigure/EndpointMvcIntegrationTests.java
Normal file → Executable file
|
@ -139,7 +139,7 @@ public class EndpointMvcIntegrationTests {
|
|||
|
||||
@Override
|
||||
public void customize(EndpointHandlerMapping mapping) {
|
||||
mapping.setInterceptors(new Object[] { interceptor() });
|
||||
mapping.setInterceptors(interceptor());
|
||||
}
|
||||
|
||||
};
|
||||
|
|
2
spring-boot-actuator/src/test/java/org/springframework/boot/actuate/autoconfigure/EndpointWebMvcAutoConfigurationTests.java
Normal file → Executable file
2
spring-boot-actuator/src/test/java/org/springframework/boot/actuate/autoconfigure/EndpointWebMvcAutoConfigurationTests.java
Normal file → Executable file
|
@ -850,7 +850,7 @@ public class EndpointWebMvcAutoConfigurationTests {
|
|||
|
||||
@Override
|
||||
public void customize(EndpointHandlerMapping mapping) {
|
||||
mapping.setInterceptors(new Object[] { interceptor() });
|
||||
mapping.setInterceptors(interceptor());
|
||||
}
|
||||
|
||||
};
|
||||
|
|
|
@ -98,7 +98,7 @@ public class HalBrowserMvcEndpointDisabledIntegrationTests {
|
|||
|
||||
public static void main(String[] args) {
|
||||
SpringApplication.run(SpringBootHypermediaApplication.class,
|
||||
new String[] { "--endpoints.hypermedia.enabled=false" });
|
||||
"--endpoints.hypermedia.enabled=false");
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue