Debloat the Velocity project

This commit is contained in:
2026-05-19 17:40:39 -04:00
parent 1b3115f094
commit 73c4449cb3
48 changed files with 336 additions and 3847 deletions
@@ -9,12 +9,20 @@ public interface PlexConfiguration
{
String getString(String path);
String getString(String path, String fallback);
boolean getBoolean(String path);
boolean getBoolean(String path, boolean fallback);
int getInt(String path);
int getInt(String path, int fallback);
List<String> getStringList(String path);
List<String> getStringList(String path, List<String> fallback);
void set(String path, Object value);
void setComments(String path, List<String> comments);