(String q)
| 810 | q = q.substring(q.lastIndexOf("{{")); |
| 811 | } |
| 812 | |
| 813 | while (q.contains("//")) q = q.replace("//", "/"); |
| 814 | |
| 815 | String q2 = q.replace(defaultDirectory, WORKSPACE) |
| 816 | .replace(templateDirectory, TEMPLATES); |
| 817 | return q2; |
| 818 | |
| 819 | |
| 820 | } |
| 821 | |
| 822 | public String findTemplateCalled(String name) { |
| 823 | String q = findTemplateCalled(name, templateDirectory); |
| 824 | if (q != null) return q; |
| 825 | q = findTemplateCalled(name, defaultDirectory); |
| 826 | return q; |
| 827 | } |
| 828 |
no test coverage detected