2004-11-21 Michael Koch <konqueror@gmx.de>
* java/beans/PropertyChangeSupport.java (propertyChangeSupportSerializedDataVersion): Made static. * java/beans/VetoableChangeSupport.java (propertyChangeSupportSerializedDataVersion): Likewise. From-SVN: r90983
This commit is contained in:
parent
1fda9d7bbb
commit
f146ac0af8
3 changed files with 9 additions and 2 deletions
|
@ -1,3 +1,10 @@
|
|||
2004-11-21 Michael Koch <konqueror@gmx.de>
|
||||
|
||||
* java/beans/PropertyChangeSupport.java
|
||||
(propertyChangeSupportSerializedDataVersion): Made static.
|
||||
* java/beans/VetoableChangeSupport.java
|
||||
(propertyChangeSupportSerializedDataVersion): Likewise.
|
||||
|
||||
2004-11-18 Jeroen Frijters <jeroen@frijters.net>
|
||||
|
||||
* java/net/URLStreamHandler.java
|
||||
|
|
|
@ -89,7 +89,7 @@ public class PropertyChangeSupport implements Serializable
|
|||
*
|
||||
* @serial the serialization format
|
||||
*/
|
||||
private final int propertyChangeSupportSerializedDataVersion = 2;
|
||||
private static final int propertyChangeSupportSerializedDataVersion = 2;
|
||||
|
||||
/**
|
||||
* The list of all registered property listeners. If this instance was
|
||||
|
|
|
@ -89,7 +89,7 @@ public class VetoableChangeSupport implements Serializable
|
|||
*
|
||||
* @serial the serialization format
|
||||
*/
|
||||
private final int vetoableChangeSupportSerializedDataVersion = 2;
|
||||
private static final int vetoableChangeSupportSerializedDataVersion = 2;
|
||||
|
||||
/**
|
||||
* The list of all registered vetoable listeners. If this instance was
|
||||
|
|
Loading…
Add table
Reference in a new issue