(Object x)
| 1130 | } |
| 1131 | |
| 1132 | static public boolean booleanCast(Object x){ |
| 1133 | if(x instanceof Boolean) |
| 1134 | return ((Boolean) x).booleanValue(); |
| 1135 | return x != null; |
| 1136 | } |
| 1137 | |
| 1138 | static public boolean booleanCast(boolean x){ |
| 1139 | return x; |
no outgoing calls
no test coverage detected