(Object obj, int def)
| 344 | } |
| 345 | |
| 346 | protected static int objToInt(Object obj, int def) { |
| 347 | if (obj != null) { |
| 348 | return Integer.parseInt(obj.toString()); |
| 349 | } else return def; |
| 350 | } |
| 351 | |
| 352 | public static Path ulogToTlogDir( |
| 353 | String coreName, Path ulogDirPath, Path instancePath, String coreDataDir) { |