Return "t.foo" from "/region__/t__foo"
(String mangledName)
| 467 | /** Return {@code "t.foo"} from {@code "/region__/t__foo"} */ |
| 468 | |
| 469 | public static String getUnMangledTemplateName(String mangledName) { |
| 470 | String t = mangledName.substring("/region__".length(), mangledName.lastIndexOf("__")); |
| 471 | String r = mangledName.substring(mangledName.lastIndexOf("__")+2, mangledName.length()); |
| 472 | return t+'.'+r; |
| 473 | } |
| 474 | |
| 475 | /** Define a map for this group. |
| 476 | * <p> |
nothing calls this directly
no test coverage detected