ParkGyeongTae commented on code in PR #5002: URL: https://github.com/apache/zeppelin/pull/5002#discussion_r2237985010
########## elasticsearch/src/main/java/org/apache/zeppelin/elasticsearch/client/ElasticsearchClientTypeBuilder.java: ########## @@ -47,18 +43,18 @@ private Builder(String propertyValue) { @Override public ElasticsearchClientType build() { - boolean isEmpty = StringUtils.isEmpty(propertyValue); - return isEmpty ? + boolean isBlank = StringUtils.isBlank(propertyValue); Review Comment: Thanks for the feedback. I've made the change and removed the unnecessary variable for `IsBlank`. -- 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: reviews-unsubscr...@zeppelin.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org