comparison src/luan/Luan.java @ 1766:8df0b80e715e

fix scheduled tasks
author Franklin Schmidt <fschmidt@gmail.com>
date Tue, 06 Jun 2023 14:33:24 -0600
parents 164c6ea53147
children ca98dee04e08
comparison
equal deleted inserted replaced
1765:1ffe1e06ea55 1766:8df0b80e715e
449 449
450 public interface Security { 450 public interface Security {
451 public void check(Luan luan,LuanClosure closure,String op,Object... args) throws LuanException; 451 public void check(Luan luan,LuanClosure closure,String op,Object... args) throws LuanException;
452 } 452 }
453 453
454 private static String SECURITY_KEY = "Luan.Security"; 454 private static final String SECURITY_KEY = "Luan.Security";
455 455
456 public static void checkSecurity(Luan luan,String op,Object... args) throws LuanException { 456 public static void checkSecurity(Luan luan,String op,Object... args) throws LuanException {
457 check(luan,1,op,args); 457 check(luan,1,op,args);
458 } 458 }
459 459