(String value)
| 1336 | } |
| 1337 | |
| 1338 | private String trim(String value) { |
| 1339 | if (value.endsWith(".0")) |
| 1340 | value = value.substring(0, value.length()-2); |
| 1341 | if (value.endsWith(".00")) |
| 1342 | value = value.substring(0, value.length()-3); |
| 1343 | return value; |
| 1344 | } |
| 1345 | |
| 1346 | private void recordOption(Object component, String value) { |
| 1347 | if (labels==null) |
no test coverage detected