Skip to content

Commit

Permalink
checkstyle
Browse files Browse the repository at this point in the history
  • Loading branch information
JNSimba committed Dec 26, 2023
1 parent fb9cae0 commit 4f0ee72
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,7 @@ protected String queryFenodes() {
ResultSetMetaData metaData = resultSet.getMetaData();
for (int i = 1; i <= metaData.getColumnCount(); i++) {
String columnName = metaData.getColumnName(i);
if(columnName.equalsIgnoreCase("IP") || columnName.equalsIgnoreCase("Host")){
if (columnName.equalsIgnoreCase("IP") || columnName.equalsIgnoreCase("Host")) {
field = columnName;
break;
}
Expand Down

0 comments on commit 4f0ee72

Please sign in to comment.