Package fr.neatmonster.nocheatplus.permissions.PermissionUtil

Examples of fr.neatmonster.nocheatplus.permissions.PermissionUtil.CommandProtectionEntry.restore()


     */
    public void undoCommandChanges() {
        if (changedCommands != null){
            while (!changedCommands.isEmpty()){
                final CommandProtectionEntry entry = changedCommands.remove(changedCommands.size() - 1);
                entry.restore();
            }
            changedCommands = null;
        }
    }

View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.