Skip to content

Commit

Permalink
fix: use boolean instead of Boolean
Browse files Browse the repository at this point in the history
Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
  • Loading branch information
mlopezFC and coderabbitai[bot] authored Oct 15, 2024
1 parent 24d331f commit b87cb6f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ public class ChatMessage extends Component implements HasComponents {
*
* @param message message used to populate the ChatMessage instance
*/
public ChatMessage(Message message, Boolean markdownEnabled) {
public ChatMessage(Message message, boolean markdownEnabled) {
this.markdownEnabled = markdownEnabled;
setMessage(message);
}
Expand Down

0 comments on commit b87cb6f

Please sign in to comment.