SHOW:
|
|
- or go back to the newest paste.
| 1 | - | version: 1 |
| 1 | + | for (Map.Entry<String, Object> entry : configMap.entrySet()) {
|
| 2 | - | zolteex: |
| 2 | + | plugin.log.info("Key : " + entry.getKey());
|
| 3 | - | ==: BendingPlayer |
| 3 | + | if (entry.getValue() instanceof ConfigurationSection) {
|
| 4 | - | SlotAbilities: |
| 4 | + | plugin.log.info("#Is configsection#");
|
| 5 | - | - 23 |
| 5 | + | plugin.log.info(" Value : " + entry.getValue());
|
| 6 | - | - 20 |
| 6 | + | } else {
|
| 7 | - | - 25 |
| 7 | + | plugin.log.info(" Value : " + entry.getValue());
|
| 8 | - | - 31 |
| 8 | + | } |
| 9 | - | - 24 |
| 9 | + | //System.out.println("Key : " + entry.getKey() + " Value : " + entry.getValue());
|
| 10 | - | - -1 |
| 10 | + | } |