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:
Phillip Webb
2020-07-27 11:07:14 -07:00
committed by Rob Winch
parent 218480fb7c
commit 4d487e8dc3
64 changed files with 62 additions and 67 deletions

View File

@@ -28,4 +28,4 @@ public interface UserRepository extends CrudRepository<User, String> {
@PreAuthorize("hasRole('ROLE_ADMIN')")
User findByUsername(String username);
}
}

View File

@@ -134,4 +134,4 @@ public class WebMvcSecurityConfigurationTests {
}
}
}

View File

@@ -42,4 +42,4 @@ public class WebConfigUtilsTests {
verifyZeroInteractions(this.parserContext);
}
}
}

View File

@@ -29,4 +29,4 @@ public class PreAuthorizeServiceImpl {
public void contactPermission(Contact contact) {
}
}
}

View File

@@ -70,4 +70,4 @@ public class PreAuthorizeTests {
this.service.contactPermission(new Contact("admin"));
}
}
}

View File

@@ -28,4 +28,4 @@ import org.springframework.security.access.annotation.Secured;
@Secured("ROLE_ADMIN")
public @interface SecuredAdminRole {
}
}

View File

@@ -56,4 +56,4 @@ public class SecuredTests {
this.service.securedAdminRole();
}
}
}

View File

@@ -49,4 +49,4 @@ public class Sec2499Tests {
this.child.refresh();
}
}
}