(int a, int b)
| 253 | |
| 254 | // Integer.max() causes java.lang.NoSuchMethodError in some cases |
| 255 | private int max(int a, int b){ |
| 256 | if(a > b) return a; |
| 257 | else return b; |
| 258 | } |
| 259 | |
| 260 | /** |
| 261 | * Saves the place data |
no outgoing calls
no test coverage detected