While browsing, I came across something suspicious. Seems like should be
return super.stopCellEditing
Maybe not a bug. Here's the context
public boolean stopCellEditing() {
String s = (String) super.getCellEditorValue();
if (s.trim().equals("")) {
if (this.constructor.getDeclaringClass() == String.class) {
this.value = s;
}
super.stopCellEditing();
}
Committed fix from Prasanth Pasala:
I guess with the database being reponsible for white space handling (don't take my word for it, I'm just guessing)
is not that different from