|
As the post above suggests, this warning does not seem to just plague classes that don't implement Comparable. I've seen this warning plenty of times using things like Vector<Double> etc.
Both Double and BigInteger implement Comparable and provide CompareTo methods (which I assume would be "safe")
Am I missing understanding the issue here?
|