Skip to content

Commit

Permalink
Merge pull request #864 from /issues/863-private-AlertAttribute
Browse files Browse the repository at this point in the history
Fix #863: Make AlertAttribute fields private
  • Loading branch information
banterCZ authored Sep 15, 2023
2 parents cdad895 + 24b73c6 commit 65bc98c
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -58,17 +58,17 @@ public enum AlertType {
/**
* Alert type.
*/
protected AlertType alertType;
private AlertType alertType;

/**
* Optional alert title.
*/
protected String title;
private String title;

/**
* Alert message.
*/
protected String message;
private String message;

/**
* Default constructor.
Expand Down

0 comments on commit 65bc98c

Please sign in to comment.