Skip to content

Commit

Permalink
Update author and copyright
Browse files Browse the repository at this point in the history
  • Loading branch information
mlichtblau committed Oct 16, 2023
1 parent 7647607 commit 011f4fa
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 7 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright 2006-2022 the original author or authors.
* Copyright 2006-2023 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -41,6 +41,7 @@
* @author Dave Syer
* @author Gary Russell
* @author Artem Bilan
* @author Marius Lichtblau
*/
@SuppressWarnings("serial")
public class ExponentialBackOffPolicy implements SleepingBackOffPolicy<ExponentialBackOffPolicy> {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright 2006-2022 the original author or authors.
* Copyright 2006-2023 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -31,6 +31,7 @@
* @author Rob Harrop
* @author Dave Syer
* @author Artem Bilan
* @author Marius Lichtblau
*/
public class FixedBackOffPolicy extends StatelessBackOffPolicy implements SleepingBackOffPolicy<FixedBackOffPolicy> {

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright 2006-2022 the original author or authors.
* Copyright 2006-2023 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -32,6 +32,7 @@
* @author Rob Harrop
* @author Dave Syer
* @author Tomaz Fernandes
* @author Marius Lichtblau
*/
public class UniformRandomBackOffPolicy extends StatelessBackOffPolicy
implements SleepingBackOffPolicy<UniformRandomBackOffPolicy> {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright 2006-2022 the original author or authors.
* Copyright 2006-2023 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand All @@ -25,6 +25,7 @@
* @author Rob Harrop
* @author Dave Syer
* @author Gary Russell
* @author Marius Lichtblau
*/
public class ExponentialBackOffPolicyTests {

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright 2006-2022 the original author or authors.
* Copyright 2006-2023 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand All @@ -25,6 +25,7 @@
* @author Rob Harrop
* @author Dave Syer
* @author Gary Russell
* @author Marius Lichtblau
* @since 2.1
*/
public class FixedBackOffPolicyTests {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright 2006-2022 the original author or authors.
* Copyright 2006-2023 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand All @@ -24,6 +24,7 @@
/**
* @author Tomaz Fernandes
* @author Gary Russell
* @author Marius Lichtblau
* @since 1.3.2
*/
public class UniformRandomBackOffPolicyTests {
Expand All @@ -41,7 +42,6 @@ public void testSetSleeper() {
assertThat(withSleeper.getMaxBackOffPeriod()).isEqualTo(maxBackOff);
}


@Test
public void testInterruptedStatusIsRestored() {
UniformRandomBackOffPolicy backOffPolicy = new UniformRandomBackOffPolicy();
Expand Down

0 comments on commit 011f4fa

Please sign in to comment.