Ensure all files end with a new line
Update all files to ensure that they always end with a new-line character. Issue gh-8945
This commit is contained in:
@@ -38,4 +38,4 @@ public interface ObjectPostProcessor<T> {
|
||||
*/
|
||||
<O extends T> O postProcess(O object);
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
@@ -57,4 +57,4 @@ class GlobalMethodSecurityAspectJAutoProxyRegistrar implements ImportBeanDefinit
|
||||
registry.registerBeanDefinition("annotationSecurityAspect$0", aspect.getBeanDefinition());
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
@@ -92,4 +92,4 @@ final class PermitAllSupport {
|
||||
private PermitAllSupport() {
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
@@ -60,4 +60,4 @@ public class SecurityDebugBeanFactoryPostProcessor implements BeanDefinitionRegi
|
||||
public void postProcessBeanFactory(ConfigurableListableBeanFactory beanFactory) throws BeansException {
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
@@ -28,4 +28,4 @@ public interface UserRepository extends CrudRepository<User, String> {
|
||||
@PreAuthorize("hasRole('ROLE_ADMIN')")
|
||||
User findByUsername(String username);
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
@@ -134,4 +134,4 @@ public class WebMvcSecurityConfigurationTests {
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
@@ -42,4 +42,4 @@ public class WebConfigUtilsTests {
|
||||
verifyZeroInteractions(this.parserContext);
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
@@ -29,4 +29,4 @@ public class PreAuthorizeServiceImpl {
|
||||
public void contactPermission(Contact contact) {
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
@@ -70,4 +70,4 @@ public class PreAuthorizeTests {
|
||||
this.service.contactPermission(new Contact("admin"));
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
@@ -28,4 +28,4 @@ import org.springframework.security.access.annotation.Secured;
|
||||
@Secured("ROLE_ADMIN")
|
||||
public @interface SecuredAdminRole {
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
@@ -56,4 +56,4 @@ public class SecuredTests {
|
||||
this.service.securedAdminRole();
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
@@ -49,4 +49,4 @@ public class Sec2499Tests {
|
||||
this.child.refresh();
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user