DEV_FLAG Warning

This commit is contained in:
Konloch 2024-10-02 16:40:46 -06:00
parent b9ff7d128a
commit ceeae5843e

AI 샘플 코드 생성 중입니다

Loading...

View File

@ -87,6 +87,10 @@ public class Constants
public static final String LIBS_DIRECTORY = getBCVDirectory() + FS + "libs" + FS; public static final String LIBS_DIRECTORY = getBCVDirectory() + FS + "libs" + FS;
public static String krakatauWorkingDirectory = getBCVDirectory() + FS + "krakatau_" + krakatauVersion; public static String krakatauWorkingDirectory = getBCVDirectory() + FS + "krakatau_" + krakatauVersion;
public static String enjarifyWorkingDirectory = getBCVDirectory() + FS + "enjarify_" + enjarifyVersion; public static String enjarifyWorkingDirectory = getBCVDirectory() + FS + "enjarify_" + enjarifyVersion;
//DEV_FLAG_* are used for enabling tooling / systems reserved for development.
//As a precaution, all variables in here MUST ensure we are working in DEV_MODE only.
//Nothing here is meant for user level production, only development level production.
public static final boolean DEV_FLAG_DECOMPILERS_SIMULATED_ERRORS = DEV_MODE && true; //enable true / false to disable public static final boolean DEV_FLAG_DECOMPILERS_SIMULATED_ERRORS = DEV_MODE && true; //enable true / false to disable
public static final PrintStream ERR = System.err; public static final PrintStream ERR = System.err;