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

@@ -19,4 +19,4 @@ public interface CrudRepository {
Iterable<Object> findAll();
}
}

View File

@@ -29,4 +29,4 @@ import org.springframework.security.access.prepost.PreAuthorize;
@PreAuthorize("hasRole('ROLE_PERSON')")
public interface PersonRepository extends CrudRepository {
}
}

View File

@@ -40,4 +40,4 @@ public class CurrentDelegatingSecurityContextExecutorServiceTests
return new DelegatingSecurityContextExecutorService(this.delegate);
}
}
}

View File

@@ -40,4 +40,4 @@ public class ExplicitDelegatingSecurityContextExecutorServiceTests
return new DelegatingSecurityContextExecutorService(this.delegate, this.securityContext);
}
}
}

View File

@@ -40,4 +40,4 @@ public class ExplicitDelegatingSecurityContextScheduledExecutorServiceTests
return new DelegatingSecurityContextScheduledExecutorService(this.delegate, this.securityContext);
}
}
}