Skip to content

Commit 9ba9551

Browse files
committed
Polishing.
Reformat code. See #3620
1 parent 9e9cb22 commit 9ba9551

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

spring-data-envers/src/main/java/org/springframework/data/envers/repository/support/EnversRevisionRepositoryImpl.java

+4-4
Original file line numberDiff line numberDiff line change
@@ -78,12 +78,12 @@ public class EnversRevisionRepositoryImpl<T, ID, N extends Number & Comparable<N
7878
* Creates a new {@link EnversRevisionRepositoryImpl} using the given {@link JpaEntityInformation},
7979
* {@link RevisionEntityInformation} and {@link EntityManager}.
8080
*
81-
* @param entityInformation must not be {@literal null}.
81+
* @param entityInformation must not be {@literal null}.
8282
* @param revisionEntityInformation must not be {@literal null}.
83-
* @param entityManager must not be {@literal null}.
83+
* @param entityManager must not be {@literal null}.
8484
*/
8585
public EnversRevisionRepositoryImpl(JpaEntityInformation<T, ?> entityInformation,
86-
RevisionEntityInformation revisionEntityInformation, EntityManager entityManager) {
86+
RevisionEntityInformation revisionEntityInformation, EntityManager entityManager) {
8787

8888
Assert.notNull(entityInformation, "JpaEntityInformation must not be null!");
8989
Assert.notNull(entityManager, "EntityManager must not be null!");
@@ -241,7 +241,7 @@ RevisionMetadata<?> createRevisionMetadata() {
241241
return metadata instanceof DefaultRevisionEntity defaultRevisionEntity //
242242
? new DefaultRevisionMetadata(defaultRevisionEntity, revisionType) //
243243
: new AnnotationRevisionMetadata<>(Hibernate.unproxy(metadata), RevisionNumber.class, RevisionTimestamp.class,
244-
revisionType);
244+
revisionType);
245245
}
246246

247247
private static RevisionMetadata.RevisionType convertRevisionType(RevisionType datum) {

0 commit comments

Comments
 (0)