(final String type, final boolean usePath, String gmName)
| 377 | } |
| 378 | |
| 379 | private static String getCustomPath(final String type, final boolean usePath, String gmName) |
| 380 | { |
| 381 | String aString = ""; |
| 382 | |
| 383 | if (usePath) |
| 384 | { |
| 385 | aString = PCGenSettings.getCustomDir(); |
| 386 | aString += File.separator + gmName; |
| 387 | } |
| 388 | return aString + File.separator + "custom" + type + Constants.EXTENSION_LIST_FILE; |
| 389 | } |
| 390 | |
| 391 | private static String getCustomPath(final String type, final boolean usePath) |
| 392 | { |
no test coverage detected