Skip to content

Commit

Permalink
Fixes checkstyle problems.
Browse files Browse the repository at this point in the history
Signed-off-by: Santiago Pericas-Geertsen <[email protected]>
  • Loading branch information
spericas committed Oct 16, 2024
1 parent 678553f commit ae58aee
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ class MetaConfigException extends RuntimeException {
*
* @param message the message
*/
public MetaConfigException(String message) {
MetaConfigException(String message) {
super(message);
}

Expand All @@ -38,7 +38,7 @@ public MetaConfigException(String message) {
* @param message the message
* @param cause the cause
*/
public MetaConfigException(String message, Throwable cause) {
MetaConfigException(String message, Throwable cause) {
super(message, cause);
}
}

0 comments on commit ae58aee

Please sign in to comment.