(String value)
| 1012 | } |
| 1013 | |
| 1014 | static String prefix(String value) |
| 1015 | { |
| 1016 | if(!isCompound(value)) |
| 1017 | return null; |
| 1018 | |
| 1019 | return prefix(value, countParts(value) - 1); |
| 1020 | } |
| 1021 | |
| 1022 | static String prefix(String value, int parts) |
| 1023 | { |
no test coverage detected