Guest User

Untitled

a guest
Jul 11th, 2014
220
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. for (Map.Entry<String, Object> entry : configMap.entrySet()) {
  2. plugin.log.info("Key : " + entry.getKey());
  3. if (entry.getValue() instanceof ConfigurationSection) {
  4. plugin.log.info("#Is configsection#");
  5. plugin.log.info(" Value : " + entry.getValue());
  6. } else {
  7. plugin.log.info(" Value : " + entry.getValue());
  8. }
  9. //System.out.println("Key : " + entry.getKey() + " Value : " + entry.getValue());
  10. }
Advertisement
Add Comment
Please, Sign In to add comment