org.bidib.wizard.api.utils.WizardUtils Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bidibwizard-api Show documentation
Show all versions of bidibwizard-api Show documentation
jBiDiB BiDiB Wizard API POM
package org.bidib.wizard.api.utils;
import org.apache.commons.lang3.SystemUtils;
public class WizardUtils {
public static String getDefaultConfigSubDir() {
// String subDir = SystemUtils.IS_OS_MAC_OSX || SystemUtils.IS_OS_LINUX /*|| SystemUtils.IS_OS_WINDOWS*/ ? "bidib" : ".bidib";
String subDir = SystemUtils.IS_OS_MAC_OSX || SystemUtils.IS_OS_LINUX /*|| SystemUtils.IS_OS_WINDOWS*/ ? "BiDiB" : "BiDiB";
return subDir;
}
}