We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 204f26f commit 7d0b9adCopy full SHA for 7d0b9ad
src/main/asciidoc/repositories.adoc
@@ -647,10 +647,10 @@ class Product { <1>
647
MonetaryAmount getPrice() { … }
648
}
649
650
-@RequiredArgConstructor(staticName = "of")
+@RequiredArgsConstructor(staticName = "of")
651
class Products implements Streamable<Product> { <2>
652
653
- private Streamable<Product> streamable;
+ private final Streamable<Product> streamable;
654
655
public MonetaryAmount getTotal() { <3>
656
return streamable.stream()
0 commit comments