Skip to content

Commit 5b6fafc

Browse files
committed
make bounded class final
1 parent fe19604 commit 5b6fafc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/src/main/java/fj/Bounded.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* The Bounded class is used to name the upper and lower limits of a type.
55
* Ord is not a superclass of Bounded since types that are not totally ordered may also have upper and lower bounds.
66
*/
7-
public class Bounded<A> {
7+
public final class Bounded<A> {
88

99
private final Definition<A> def;
1010

0 commit comments

Comments
 (0)