package net.oni2.aeinstaller.backend; public class StuffToRefactorLater { /** * Verify that the Edition is within a subfolder to vanilla Oni (..../Oni/Edition/AEInstaller) * @return true if GDF can be found in the parent's parent-path */ public static boolean verifyRunningDirectory() { return Paths.getVanillaGDF().exists() && Paths.getVanillaGDF().isDirectory(); } }