AuthMe / ConfigMe

A simple configuration management library for any Java project!
MIT License
37 stars 14 forks source link

Fix readme WelcomeWriter.java #386

Closed yagahut closed 11 months ago

yagahut commented 11 months ago

With the latest version of the library (1.4.1 at the moment) This method doesn't support a raw String parameter

SettingsManagerBuilder.withYamlFile("config.yml") // won't compile
...

So a Path parameter could be used instead

SettingsManagerBuilder.withYamlFile(Path.of("config.yml"))
...
ljacqu commented 11 months ago

Oh my, that's quite the embarrassing mistake! Thanks for this fix :smile: