Re: RFR: 8330049: Remove unused AbstractLinker::linkerByteOrder [v2]

2024-04-10 Thread Jorn Vernee
> Please review this simple cleanup which removes the > `AbstractLinker::linkerByteOrder` method. It was only used in > `AixPPC64Linker`, where we know it will always return `ByteOrder.BIG_ENDIAN` > so we can just replace the call with that. > > Testing: Local run of `run-test-jdk_foreign`. Jo

Re: RFR: 8330049: Remove unused AbstractLinker::linkerByteOrder

2024-04-10 Thread Maurizio Cimadamore
On Wed, 10 Apr 2024 15:38:22 GMT, Jorn Vernee wrote: > Please review this simple cleanup which removes the > `AbstractLinker::linkerByteOrder` method. It was only used in > `AixPPC64Linker`, where we know it will always return `ByteOrder.BIG_ENDIAN` > so we can just replace the call with that.

RFR: 8330049: Remove unused AbstractLinker::linkerByteOrder

2024-04-10 Thread Jorn Vernee
Please review this simple cleanup which removes the `AbstractLinker::linkerByteOrder` method. It was only used in `AixPPC64Linker`, where we know it will always return `ByteOrder.BIG_ENDIAN` so we can just replace the call with that. Testing: Local run of `run-test-jdk_foreign`. -