()
| 74 | } |
| 75 | |
| 76 | public void load() { |
| 77 | |
| 78 | File file = new File(this.plugin.getDataFolder(), "messages.yml"); |
| 79 | if (!file.exists()) { |
| 80 | this.save(); |
| 81 | return; |
| 82 | } |
| 83 | |
| 84 | this.loadMessages(YamlConfiguration.loadConfiguration(file)); |
| 85 | } |
| 86 | |
| 87 | private void loadMessages(YamlConfiguration configuration) { |
| 88 |
nothing calls this directly
no test coverage detected