Bumped CheckStyle to version 10.18.0

This commit is contained in:
Erik C. Thauvin 2024-08-25 11:08:12 -07:00
parent 143bb31a78
commit becd6384cd
Signed by: erik
GPG key ID: 776702A6A2DA330E
6 changed files with 24 additions and 18 deletions

View file

@ -284,13 +284,6 @@ public class CheckstyleOperation extends AbstractProcessOperation<CheckstyleOper
return this;
}
/*
* Determines if a string is not blank.
*/
private boolean isNotBlank(String s) {
return s != null && !s.isBlank();
}
/**
* This option is used to print the Parse Tree of the Javadoc comment. The file has to contain only Javadoc comment
* content excluding '&#47;**' and '*&#47;' at the beginning and at the end respectively. It can only be used on a
@ -492,4 +485,11 @@ public class CheckstyleOperation extends AbstractProcessOperation<CheckstyleOper
}
return this;
}
/*
* Determines if a string is not blank.
*/
private boolean isNotBlank(String s) {
return s != null && !s.isBlank();
}
}