fjtirado commented on code in PR #4139:
URL:
https://github.com/apache/incubator-kie-kogito-runtimes/pull/4139#discussion_r2581394118
##########
api/kogito-api/src/main/java/org/kie/kogito/internal/utils/ConversionUtils.java:
##########
@@ -228,7 +228,7 @@ public static String concatPaths(String onePath, String
anotherPath, String conc
* @return
*/
public static boolean isEmpty(String value) {
- return Objects.isNull(value) || value.isBlank();
+ return value == null || value.isBlank();
Review Comment:
Not needed, but overkill that I needed to fix ;)
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]