Skip to content

Commit 7431671

Browse files
pieterdescheppertriceo
authored andcommitted
fix: use private properties in order-picking classes
1 parent 0a6dfbd commit 7431671

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

use-cases/order-picking/src/main/java/org/acme/orderpicking/bootstrap/DemoDataGenerator.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,8 +79,8 @@ public enum ProductFamily {
7979
}
8080

8181
public static class ProductFamilyPair {
82-
final Product product;
83-
final ProductFamily family;
82+
private final Product product;
83+
private final ProductFamily family;
8484

8585
public ProductFamilyPair(Product product, ProductFamily family) {
8686
this.product = product;

0 commit comments

Comments
 (0)