Skip to content

Commit 2ad954e

Browse files
committed
Fix more pmd_analyze issues.
1 parent 7d26901 commit 2ad954e

File tree

2 files changed

+1
-6
lines changed

2 files changed

+1
-6
lines changed

powertools-e2e-tests/src/test/java/software/amazon/lambda/powertools/BatchE2ET.java

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -269,14 +269,9 @@ private boolean areAllTestProductsPresent(ScanResponse items) {
269269

270270
class Product {
271271
private long id;
272-
273272
private String name;
274-
275273
private double price;
276274

277-
public Product() {
278-
}
279-
280275
public Product(long id, String name, double price) {
281276
this.id = id;
282277
this.name = name;

powertools-e2e-tests/src/test/java/software/amazon/lambda/powertools/testutils/RetryUtils.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
/**
2727
* Utility class for consistent retry configuration across all test utilities.
2828
*/
29-
public class RetryUtils {
29+
public final class RetryUtils {
3030
private static final Logger LOG = LoggerFactory.getLogger(RetryUtils.class);
3131

3232
private static final RetryConfig DEFAULT_RETRY_CONFIG = RetryConfig.custom()

0 commit comments

Comments
 (0)