From 7a3f63040da8dfc4d8d0cd0a7d5d890a7ba6bcc5 Mon Sep 17 00:00:00 2001 From: James Seibel Date: Sat, 26 Aug 2023 10:56:31 -0500 Subject: [PATCH] Remove unused IDhApiConfigValue.getApiValue() --- .../interfaces/config/IDhApiConfigValue.java | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/api/src/main/java/com/seibel/distanthorizons/api/interfaces/config/IDhApiConfigValue.java b/api/src/main/java/com/seibel/distanthorizons/api/interfaces/config/IDhApiConfigValue.java index fc91e534a..e6b7dc515 100644 --- a/api/src/main/java/com/seibel/distanthorizons/api/interfaces/config/IDhApiConfigValue.java +++ b/api/src/main/java/com/seibel/distanthorizons/api/interfaces/config/IDhApiConfigValue.java @@ -16,17 +16,17 @@ public interface IDhApiConfigValue * Returns the True value if either the config cannot be overridden by * the API or if it hasn't been set by the API. */ - public T getValue(); + T getValue(); /** * Returns the value held by this config.
* This is the value stored in the config file. */ - public T getTrueValue(); - /** + T getTrueValue(); + /* * Returns the value of the config if it was set by the API. * Returns null if the config wasn't set by the API. */ - public T getApiValue(); + //T getApiValue(); // not currently implemented /** * Sets the config's value.
@@ -36,16 +36,16 @@ public interface IDhApiConfigValue * * @return true if the value was set, false otherwise. */ - public boolean setValue(T newValue); + boolean setValue(T newValue); /** Returns true if this config can be set via the API, false otherwise. */ - public boolean getCanBeOverrodeByApi(); + boolean getCanBeOverrodeByApi(); /** Returns the default value for this config. */ - public T getDefaultValue(); + T getDefaultValue(); /** Returns the max value for this config, null if there is no max. */ - public T getMaxValue(); + T getMaxValue(); /** Returns the min value for this config, null if there is no min. */ - public T getMinValue(); + T getMinValue(); }