Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- for (Map.Entry<String, Object> entry : configMap.entrySet()) {
- plugin.log.info("Key : " + entry.getKey());
- if (entry.getValue() instanceof ConfigurationSection) {
- plugin.log.info("#Is configsection#");
- plugin.log.info(" Value : " + entry.getValue());
- } else {
- plugin.log.info(" Value : " + entry.getValue());
- }
- //System.out.println("Key : " + entry.getKey() + " Value : " + entry.getValue());
- }
Advertisement
Add Comment
Please, Sign In to add comment