(int x, int y, int z)
| 80 | } |
| 81 | |
| 82 | public Position move(int x, int y, int z) { |
| 83 | this.x = this.x + x; |
| 84 | this.y = this.y + y; |
| 85 | this.z = this.z + z; |
| 86 | return this; |
| 87 | } |
| 88 | |
| 89 | public static Position add(Position a, Position b) { |
| 90 | if (a == null || b == null) { |
no outgoing calls
no test coverage detected