Skip to content
This repository has been archived by the owner on May 27, 2024. It is now read-only.

Commit

Permalink
replace String::isBlank by String::isEmpty
Browse files Browse the repository at this point in the history
to maintain java8 compatibility
  • Loading branch information
tenzap committed Aug 2, 2023
1 parent 7aa42c8 commit 7e00ffe
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ private void checkBoxEvent(MouseEvent e) {
}
}

if ((dataValue == null || dataValue.isBlank()) && (otherData == null || otherData.isBlank())) {
if ((dataValue == null || dataValue.isEmpty()) && (otherData == null || otherData.isEmpty())) {
insertData = null;
dataTable.setValueAt(insertData, row, StopTableInfo.NEW_VALUE_DATA_COL);
}
Expand Down

0 comments on commit 7e00ffe

Please sign in to comment.