in src/main/java/org/apache/geronimo/microprofile/impl/jwtauth/io/PropertiesLoader.java [29:37]
public static Properties load(final String value) {
final Properties properties = new Properties();
try (final Reader reader = new StringReader(value)) {
properties.load(reader);
} catch (final IOException e) {
throw new IllegalArgumentException(e);
}
return properties;
}