mirror of
https://github.com/Wisser/Jailer.git
synced 2026-05-24 11:39:31 -05:00
respect UIUtil.NULL
This commit is contained in:
@@ -4409,6 +4409,12 @@ public abstract class BrowserContentPane extends javax.swing.JPanel {
|
||||
if (o2 instanceof TableModelItem) {
|
||||
o2 = ((TableModelItem) o2).value;
|
||||
}
|
||||
if (o1 == UIUtil.NULL) {
|
||||
o1 = null;
|
||||
}
|
||||
if (o2 == UIUtil.NULL) {
|
||||
o2 = null;
|
||||
}
|
||||
if (o1 == null && o2 == null) {
|
||||
return 0;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user