Skip to content

Commit

Permalink
Add missing Javadoc
Browse files Browse the repository at this point in the history
  • Loading branch information
sbrannen committed Dec 13, 2022
1 parent 618989d commit c7bdfbe
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
Expand Up @@ -75,6 +75,10 @@ public void setMessageSource(MessageSource messageSource) {
this.messageSource = messageSource;
}

/**
* Get the {@link MessageSource} that this exception handler uses.
* @since 6.0.3
*/
@Nullable
protected MessageSource getMessageSource() {
return this.messageSource;
Expand Down
Expand Up @@ -96,6 +96,10 @@ public void setMessageSource(MessageSource messageSource) {
this.messageSource = messageSource;
}

/**
* Get the {@link MessageSource} that this exception handler uses.
* @since 6.0.3
*/
@Nullable
protected MessageSource getMessageSource() {
return this.messageSource;
Expand Down

0 comments on commit c7bdfbe

Please sign in to comment.