Skip to content

Commit

Permalink
fix type
Browse files Browse the repository at this point in the history
  • Loading branch information
eolivelli committed May 14, 2024
1 parent b07a55d commit 657e3a1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -736,7 +736,7 @@ static Object getProperty(Map<String, String> cacheProperties, String name) {
// we pre-compute the type in order to avoid to scan the list to fine the type
String type = SYSTEM_PROPERTIES_TYPES.get(name);
if (type == null) {
type = cacheProperties.get(propertyType(name));
type = propertyType(name);
}
String value = cacheProperties.get(name);
return getObjectProperty(value, type);
Expand Down

0 comments on commit 657e3a1

Please sign in to comment.