(ForgeDirection aDirection)
| 1518 | } |
| 1519 | |
| 1520 | public static byte side(ForgeDirection aDirection) { |
| 1521 | return (byte)(aDirection==null?SIDE_INVALID:aDirection.ordinal()); |
| 1522 | } |
| 1523 | |
| 1524 | public static byte side(int aSide) { |
| 1525 | return aSide > 5 || aSide < 0 ? SIDE_INVALID : (byte)aSide; |
no outgoing calls
no test coverage detected