(String name)
| 685 | } |
| 686 | |
| 687 | static private ZipEntry getThemeZipEntry(String name) { |
| 688 | if (zipTheme == null) { |
| 689 | return null; |
| 690 | } |
| 691 | |
| 692 | if (name.startsWith(THEME_DIR)) { |
| 693 | name = name.substring(THEME_DIR.length()); |
| 694 | } |
| 695 | |
| 696 | return zipTheme.getZip().getEntry(name); |
| 697 | } |
| 698 | |
| 699 | static private File getDefaultFile(String name) { |
| 700 | return new File(BaseNoGui.getContentFile("lib"), name); |
no test coverage detected