// returns true if a translator had been loaded static synchronized bool veryQuickJava_refresh() { bool change = false; pcall { // TODO: Why are we dropping these? for (File f : listFiles(new File(javaxCodeDir(), "Transpilations"))) if (ewic(f.getName(), ".java")) { change = true; f.delete(); } } if (getOpt(mc(), "transpileRaw_trans") != null) { setOpt(mc(), "transpileRaw_trans", null); change = true; } // Also clear standard functions callOpt(getOpt(mc(), 'loadFunctions_cache), 'clear); ret change; }