mirror of
https://github.com/CarmJos/EasyConfiguration.git
synced 2026-06-04 18:48:20 +08:00
chore: Fixed the param errors.
This commit is contained in:
@@ -75,10 +75,10 @@ public class SQLSource extends ConfigureSource<SourcedSection, Map<String, Objec
|
||||
List<Object[]> dataValues = new ArrayList<>();
|
||||
|
||||
SourcedSection section = section();
|
||||
Map<String, ConfigValue<?>> values = holder().registeredValues();
|
||||
for (Map.Entry<String, ConfigValue<?>> entry : values.entrySet()) {
|
||||
Map<String, ConfigValue<?, ?>> values = holder().registeredValues();
|
||||
for (Map.Entry<String, ConfigValue<?, ?>> entry : values.entrySet()) {
|
||||
@NotNull String path = entry.getKey();
|
||||
@NotNull ConfigValue<?> config = entry.getValue();
|
||||
@NotNull ConfigValue<?, ?> config = entry.getValue();
|
||||
@Nullable Object value = section.get(path);
|
||||
|
||||
if (value instanceof SourcedSection) {
|
||||
|
||||
Reference in New Issue
Block a user