![JAR search and dependency download from the Maven repository](/logo.png)
jnr.ffi.provider.jffi.Util Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jnr-unixsocket-nodep Show documentation
Show all versions of jnr-unixsocket-nodep Show documentation
com.github.jnr:jnr-unixsocket with orh.objectweb.asm shaded
The newest version!
package jnr.ffi.provider.jffi;
/**
*/
final class Util {
static boolean getBooleanProperty(String propertyName, boolean defaultValue) {
try {
return Boolean.valueOf(System.getProperty(propertyName, Boolean.valueOf(defaultValue).toString()));
} catch (SecurityException se) {
return defaultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy