Package ch.njol.util

Examples of ch.njol.util.Closeable


    if (databases == null || !(databases instanceof SectionNode)) {
      Skript.error("The config is missing the required 'databases' section that defines where the variables are saved");
      return false;
    }
   
    Skript.closeOnDisable(new Closeable() {
      @Override
      public void close() {
        Variables.close();
      }
    });
View Full Code Here

TOP

Related Classes of ch.njol.util.Closeable

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.