blob: 06750c302b892a2fbf61383e77b9860df3607081 [file] [log] [blame]
import java.util.ArrayList;
import java.util.List;
public class RedundantCast {
boolean redundantCasts(Object o) {
int p = 0;
if ((Number)p instanceof Integer) {}
return (List)o instanceof ArrayList;
}
}