We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 719c164 commit 04a5da3Copy full SHA for 04a5da3
1 file changed
src/main/java/de/einfachesache/api/util/FileUtils.java
@@ -138,6 +138,10 @@ public boolean getBoolean(String path) {
138
return this.getConfig().getBoolean(path);
139
}
140
141
+ public float getFloat(String path) {
142
+ return this.getConfig().getFloat(path);
143
+ }
144
+
145
public double getDouble(String path) {
146
return this.getConfig().getDouble(path);
147
@@ -179,6 +183,10 @@ public boolean getBoolean(String path, boolean def) {
179
183
return this.getConfig().getBoolean(path, def);
180
184
181
185
186
+ public float getFloat(String path, float def) {
187
+ return this.getConfig().getFloat(path, def);
188
189
182
190
public double getDouble(String path, double def) {
191
return this.getConfig().getDouble(path, def);
192
0 commit comments