(String hostName)
| 1510 | * form. |
| 1511 | */ |
| 1512 | private static String renameWildcardHost(String hostName) { |
| 1513 | if (hostName != null && hostName.startsWith("*.")) { |
| 1514 | return hostName.substring(1); |
| 1515 | } else { |
| 1516 | return hostName; |
| 1517 | } |
| 1518 | } |
| 1519 | |
| 1520 | |
| 1521 | // ------------------------------------------------- MapElement Inner Class |
no test coverage detected