Skip to content

Commit

Permalink
Changed boolean to Boolean for namespace logic
Browse files Browse the repository at this point in the history
  • Loading branch information
MNoeva authored and ikasarov committed Sep 10, 2024
1 parent 7ba8a9f commit 8db210e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ public static <K, V> Map<K, V> merge(Map<K, V> original, Map<K, V> override) {
return result;
}

public static boolean parseBooleanFlag(final Map<String, Object> parameters, String flagName, boolean defaultValue)
public static Boolean parseBooleanFlag(final Map<String, Object> parameters, String flagName, Boolean defaultValue)
throws ContentException {
Object flagValue = parameters.get(flagName);

Expand Down

0 comments on commit 8db210e

Please sign in to comment.