if I send two null values as below.
pcl.firePropertyChange("name", null, null) it will recognize this as a change and fires propertyChange(PropertyChangeEvent evt).
Is this a bug? Any suggestions ?
if I send two null values as below.
pcl.firePropertyChange("name", null, null) it will recognize this as a change and fires propertyChange(PropertyChangeEvent evt).
Is this a bug? Any suggestions ?
It's working as defined in the JavaDoc:
No event is fired if old and new are equal and non-null. So no bug.