Skip to content

Commit

Permalink
Removed booleanValue() call
Browse files Browse the repository at this point in the history
  • Loading branch information
MNoeva committed Sep 10, 2024
1 parent 8db210e commit 3f7aff3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,6 @@ public static Boolean parseBooleanFlag(final Map<String, Object> parameters, Str
throw new ContentException(Messages.COULD_NOT_PARSE_BOOLEAN_FLAG, flagName);
}

return ((Boolean) flagValue).booleanValue();
return (Boolean) flagValue;
}
}

0 comments on commit 3f7aff3

Please sign in to comment.