Skip to content

Commit 57201c3

Browse files
Specified type
1 parent ac5d870 commit 57201c3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/YASL/CEstimationFor.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ public int compareTo(CEstimationFor<T> o) {
2222
return 1;
2323
if (delta < 0)
2424
return -1;
25-
return -((Comparable)Item).compareTo(o.Item);
25+
return -((Comparable<T>)Item).compareTo(o.Item);
2626
}
2727

2828
@SuppressWarnings("unchecked")

0 commit comments

Comments
 (0)