Skip to content

Commit 58f8f63

Browse files
committed
Update copyright year to 2021.
Closes #271.
1 parent 5a3515a commit 58f8f63

19 files changed

+30
-31
lines changed

src/main/asciidoc/index.adoc

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Oliver Gierke;
44
:revdate: {localdate}
55
:spring-data-commons-docs: ../../../../spring-data-commons/src/main/asciidoc
66

7-
(C) 2008-2019 The original authors.
7+
(C) 2008-2021 The original authors.
88

99
NOTE: Copies of this document may be made for your own use and for distribution to others, provided that you do not charge any fee for such copies and further provided that each copy contains this Copyright Notice, whether distributed in print or electronically.
1010

@@ -13,7 +13,6 @@ toc::[]
1313
include::{spring-data-commons-docs}/dependencies.adoc[leveloffset=+1]
1414
include::{spring-data-commons-docs}/repositories.adoc[leveloffset=+1]
1515

16-
1716
[[reference]]
1817
= Reference Documentation
1918

src/main/java/org/springframework/data/envers/repository/support/DefaultRevisionEntityInformation.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2012-2020 the original author or authors.
2+
* Copyright 2012-2021 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -20,7 +20,7 @@
2020

2121
/**
2222
* {@link RevisionEntityInformation} for {@link DefaultRevisionEntity}.
23-
*
23+
*
2424
* @author Oliver Gierke
2525
*/
2626
class DefaultRevisionEntityInformation implements RevisionEntityInformation {

src/main/java/org/springframework/data/envers/repository/support/DefaultRevisionMetadata.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2012-2020 the original author or authors.
2+
* Copyright 2012-2021 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

src/main/java/org/springframework/data/envers/repository/support/EnversRevisionRepository.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2012-2020 the original author or authors.
2+
* Copyright 2012-2021 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

src/main/java/org/springframework/data/envers/repository/support/EnversRevisionRepositoryFactoryBean.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2012-2020 the original author or authors.
2+
* Copyright 2012-2021 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -31,7 +31,7 @@
3131

3232
/**
3333
* {@link FactoryBean} creating {@link RevisionRepository} instances.
34-
*
34+
*
3535
* @author Oliver Gierke
3636
* @author Michael Igler
3737
*/
@@ -42,7 +42,7 @@ public class EnversRevisionRepositoryFactoryBean<T extends RevisionRepository<S,
4242

4343
/**
4444
* Creates a new {@link EnversRevisionRepositoryFactoryBean} for the given repository interface.
45-
*
45+
*
4646
* @param repositoryInterface must not be {@literal null}.
4747
*/
4848
public EnversRevisionRepositoryFactoryBean(Class<? extends T> repositoryInterface) {
@@ -51,7 +51,7 @@ public EnversRevisionRepositoryFactoryBean(Class<? extends T> repositoryInterfac
5151

5252
/**
5353
* Configures the revision entity class. Will default to {@link DefaultRevisionEntity}.
54-
*
54+
*
5555
* @param revisionEntityClass
5656
*/
5757
public void setRevisionEntityClass(Class<?> revisionEntityClass) {
@@ -69,7 +69,7 @@ protected RepositoryFactorySupport createRepositoryFactory(EntityManager entityM
6969

7070
/**
7171
* Repository factory creating {@link RevisionRepository} instances.
72-
*
72+
*
7373
* @author Oliver Gierke
7474
* @author Jens Schauder
7575
*/

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2012-2020 the original author or authors.
2+
* Copyright 2012-2021 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

src/main/java/org/springframework/data/envers/repository/support/ReflectionRevisionEntityInformation.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2012-2020 the original author or authors.
2+
* Copyright 2012-2021 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

src/test/java/org/springframework/data/envers/Config.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2012-2020 the original author or authors.
2+
* Copyright 2012-2021 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -37,7 +37,7 @@
3737

3838
/**
3939
* Spring JavaConfig configuration for general infrastructure.
40-
*
40+
*
4141
* @author Oliver Gierke
4242
*/
4343
@Configuration

src/test/java/org/springframework/data/envers/repository/support/DefaultRevisionMetadataUnitTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2012-2020 the original author or authors.
2+
* Copyright 2012-2021 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

src/test/java/org/springframework/data/envers/repository/support/EnversRevisionRepositoryImplUnitTests.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2020 the original author or authors.
2+
* Copyright 2020-2021 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -57,4 +57,4 @@ public void revisionTypeOfDefaultRevisionMetadataIsProperlySet() {
5757
assertThat(revisionMetadata.getRevisionType()).isEqualTo(RevisionMetadata.RevisionType.DELETE);
5858
}
5959

60-
}
60+
}

src/test/java/org/springframework/data/envers/repository/support/QueryDslRepositoryIntegrationTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2018-2020 the original author or authors.
2+
* Copyright 2018-2021 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

src/test/java/org/springframework/data/envers/repository/support/RepositoryIntegrationTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2012-2020 the original author or authors.
2+
* Copyright 2012-2021 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

src/test/java/org/springframework/data/envers/sample/AbstractEntity.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2012-2020 the original author or authors.
2+
* Copyright 2012-2021 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

src/test/java/org/springframework/data/envers/sample/Country.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2012-2020 the original author or authors.
2+
* Copyright 2012-2021 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -22,7 +22,7 @@
2222

2323
/**
2424
* Sample domain class.
25-
*
25+
*
2626
* @author Oliver Gierke
2727
* @author Jens Schauder
2828
*/

src/test/java/org/springframework/data/envers/sample/CountryQueryDslRepository.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2015-2020 the original author or authors.
2+
* Copyright 2015-2021 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

src/test/java/org/springframework/data/envers/sample/CountryRepository.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2012-2020 the original author or authors.
2+
* Copyright 2012-2021 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -20,7 +20,7 @@
2020

2121
/**
2222
* Repository for {@link Country} objects.
23-
*
23+
*
2424
* @author Oliver Gierke
2525
*/
2626
public interface CountryRepository extends RevisionRepository<Country, Long, Integer>, JpaRepository<Country, Long> {

src/test/java/org/springframework/data/envers/sample/License.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2012-2020 the original author or authors.
2+
* Copyright 2012-2021 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -25,7 +25,7 @@
2525

2626
/**
2727
* Sample domain class.
28-
*
28+
*
2929
* @author Philip Huegelmeyer
3030
*/
3131
@Audited

src/test/java/org/springframework/data/envers/sample/LicenseRepository.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2012-2020 the original author or authors.
2+
* Copyright 2012-2021 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -20,7 +20,7 @@
2020

2121
/**
2222
* Repository for {@link License} objects.
23-
*
23+
*
2424
* @author Oliver Gierke
2525
*/
2626
public interface LicenseRepository extends RevisionRepository<License, Long, Integer>, JpaRepository<License, Long> {

src/test/java/org/springframework/data/envers/sample/QCountry.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2015-2020 the original author or authors.
2+
* Copyright 2015-2021 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

0 commit comments

Comments
 (0)