Re: RFR: 8299337: The java.awt.image.ColorModel#pData field is unused

2023-01-05 Thread Phil Race
On Sat, 24 Dec 2022 03:49:38 GMT, Sergey Bylokhov wrote: > I have found that we store the native pointer in the > "java.awt.image.ColorModel#pData" field and never update/clean it. We can > check how and when the native data is deallocated and reset the pointer, but > it will be easy just to d

Re: RFR: 8299337: The java.awt.image.ColorModel#pData field is unused

2022-12-29 Thread SWinxy
On Sat, 24 Dec 2022 03:49:38 GMT, Sergey Bylokhov wrote: > I have found that we store the native pointer in the > "java.awt.image.ColorModel#pData" field and never update/clean it. We can > check how and when the native data is deallocated and reset the pointer, but > it will be easy just to d

RFR: 8299337: The java.awt.image.ColorModel#pData field is unused

2022-12-24 Thread Sergey Bylokhov
I have found that we store the native pointer in the "java.awt.image.ColorModel#pData" field and never update/clean it. We can check how and when the native data is deallocated and reset the pointer, but it will be easy just to delete the field as unused. - Commit messages: - pDat