All Downloads are FREE. Search and download functionalities are using the official Maven repository.

dev.alangomes.springspigot.ConfigurationPropertySource Maven / Gradle / Ivy

The newest version!
package dev.alangomes.springspigot;

import org.bukkit.configuration.file.FileConfiguration;
import org.springframework.core.env.PropertySource;

class ConfigurationPropertySource extends PropertySource {

    ConfigurationPropertySource(FileConfiguration source) {
        super("config", source);
    }

    @Override
    public Object getProperty(String s) {
        return source.get(s);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy