Package com.sk89q.commandbook.config

Examples of com.sk89q.commandbook.config.LegacyCommandBookConfigurationMigrator


                config.setComment(e.getKey(), e.getValue().toString());
            }
        }

        // Migrate the old configuration, if we need to
        final String result = new LegacyCommandBookConfigurationMigrator(configFile, config).migrate();
        if (result != null) {
            logger().severe("Error migrating CommandBook configuration: " + result);
        }

        return config;
View Full Code Here

TOP

Related Classes of com.sk89q.commandbook.config.LegacyCommandBookConfigurationMigrator

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.