Re: RFR: 8295370: Update java.io.ObjectStreamField to use Class.descriptorString

2022-10-14 Thread Brian Burkhalter
On Fri, 14 Oct 2022 18:23:58 GMT, Roger Riggs wrote: > The code in ObjectStreamField for constructing type signatures should be > replaced by Class.descriptorString(). > The corresponding change is made in ObjectStreamClass. > There is no change to the contents of the type strings and the exist

Re: RFR: 8295370: Update java.io.ObjectStreamField to use Class.descriptorString

2022-10-14 Thread Mandy Chung
On Fri, 14 Oct 2022 18:23:58 GMT, Roger Riggs wrote: > The code in ObjectStreamField for constructing type signatures should be > replaced by Class.descriptorString(). > The corresponding change is made in ObjectStreamClass. > There is no change to the contents of the type strings and the exist

Re: RFR: 8295370: Update java.io.ObjectStreamField to use Class.descriptorString

2022-10-14 Thread Brian Burkhalter
On Fri, 14 Oct 2022 18:23:58 GMT, Roger Riggs wrote: > The code in ObjectStreamField for constructing type signatures should be > replaced by Class.descriptorString(). > The corresponding change is made in ObjectStreamClass. > There is no change to the contents of the type strings and the exist

RFR: 8295370: Update java.io.ObjectStreamField to use Class.descriptorString

2022-10-14 Thread Roger Riggs
The code in ObjectStreamField for constructing type signatures should be replaced by Class.descriptorString(). The corresponding change is made in ObjectStreamClass. There is no change to the contents of the type strings and the existing tests will cover it. - Commit messages: - 8