Creates a ConfigManager targetting a specific config file, which will be created if it does not exist @param plugin The plugin the ConfigManager belongs to @param file The config file to manage @return The ConfigManager
(Plugin plugin, File file)
| 42 | * @return The ConfigManager |
| 43 | */ |
| 44 | public static ConfigManager create(Plugin plugin, File file) { |
| 45 | return new ConfigManager(plugin, file); |
| 46 | } |
| 47 | |
| 48 | /** |
| 49 | * Creates a ConfigManager targetting a specific config file, which will be created if it does not exist |