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

Commit 7e00ffe

Browse files
committed
replace String::isBlank by String::isEmpty
to maintain java8 compatibility
1 parent 7aa42c8 commit 7e00ffe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

GO_Sync/src/main/java/edu/usf/cutr/go_sync/gui/object/BooleanMouseListener.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ private void checkBoxEvent(MouseEvent e) {
124124
}
125125
}
126126

127-
if ((dataValue == null || dataValue.isBlank()) && (otherData == null || otherData.isBlank())) {
127+
if ((dataValue == null || dataValue.isEmpty()) && (otherData == null || otherData.isEmpty())) {
128128
insertData = null;
129129
dataTable.setValueAt(insertData, row, StopTableInfo.NEW_VALUE_DATA_COL);
130130
}

0 commit comments

Comments
 (0)