Skip to content

Commit 5d87091

Browse files
committed
GH-395: add author details to all modified classes that already had an author list
1 parent 13109cb commit 5d87091

File tree

7 files changed

+7
-0
lines changed

7 files changed

+7
-0
lines changed

src/main/java/org/springframework/retry/RetryContext.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@
2323
* used to alter the course of the retry, e.g. force an early termination.
2424
*
2525
* @author Dave Syer
26+
* @author Emanuele Ivaldi
2627
*
2728
*/
2829
public interface RetryContext extends AttributeAccessor {

src/main/java/org/springframework/retry/RetryPolicy.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@
2626
* API for a range of different platforms for the external context.
2727
*
2828
* @author Dave Syer
29+
* @author Emanuele Ivaldi
2930
*
3031
*/
3132
public interface RetryPolicy extends Serializable {

src/main/java/org/springframework/retry/policy/CompositeRetryPolicy.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@
3030
*
3131
* @author Dave Syer
3232
* @author Michael Minella
33+
* @author Emanuele Ivaldi
3334
*
3435
*/
3536
@SuppressWarnings("serial")

src/main/java/org/springframework/retry/policy/SimpleRetryPolicy.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@
5858
* @author Gary Russell
5959
* @author Aleksandr Shamukov
6060
* @author Artem Bilan
61+
* @author Emanuele Ivaldi
6162
*/
6263
@SuppressWarnings("serial")
6364
public class SimpleRetryPolicy implements RetryPolicy {

src/main/java/org/springframework/retry/support/RetryTemplate.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,7 @@
7575
* @author Artem Bilan
7676
* @author Josh Long
7777
* @author Aleksandr Shamukov
78+
* @author Emanuele Ivaldi
7879
*/
7980
public class RetryTemplate implements RetryOperations {
8081

src/test/java/org/springframework/retry/annotation/EnableRetryTests.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,7 @@
6060
* @author Henning Pöttker
6161
* @author Yanming Zhou
6262
* @author Anton Aharkau
63+
* @author Emanuele Ivaldi
6364
* @since 1.1
6465
*/
6566
public class EnableRetryTests {

src/test/java/org/springframework/retry/support/RetryTemplateTests.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@
5151
* @author Dave Syer
5252
* @author Gary Russell
5353
* @author Henning Pöttker
54+
* @author Emanuele Ivaldi
5455
*/
5556
public class RetryTemplateTests {
5657

0 commit comments

Comments
 (0)