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

com.legyver.fenxlib.icons.icomoon.license.LicenseServiceImpl Maven / Gradle / Ivy

There is a newer version: 2.1.2.6
Show newest version
package com.legyver.fenxlib.icons.icomoon.license;

import com.legyver.core.license.LicenseService;

import java.io.IOException;
import java.io.InputStream;
import java.util.Properties;


/**
 * Load the licenses information of open source libraries used by this module
 */
public class LicenseServiceImpl implements LicenseService {
	@Override
	public Properties loadLicenseProperties() throws IOException {
		Properties properties = new Properties();
		try (InputStream inputStream = LicenseServiceImpl.class.getResourceAsStream("license.properties")) {
			properties.load(inputStream);
		}
		return properties;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy