Returns a UUID-String without dashes @param uuid The UUID that should be replaced. @return a UUID-String without dashes.
(UUID uuid)
| 197 | * @return a UUID-String without dashes. |
| 198 | */ |
| 199 | public static String getUUIDWithoutDashes(UUID uuid) { |
| 200 | return uuid.toString().replace("-", ""); |
| 201 | } |
| 202 | |
| 203 | public static String upperToDash(String input) { |
| 204 | StringBuilder result = new StringBuilder(); |
no test coverage detected