Details
-
Improvement
-
Status: Closed
-
Major
-
Resolution: Fixed
-
None
-
None
-
None
Description
replace occurrences of
public <T> T myMethod() { ... return (T) myObject; }
... with ...
public <T> T myMethod() { ... return Casts.uncheckedCast(myObject); }
... such that we have a programmatic entry point for any unchecked casts.