On Mon, 11 Jul 2022 15:19:30 GMT, Andy Goryachev <[email protected]> wrote:
>> modules/javafx.graphics/src/main/java/com/sun/javafx/css/CalculatedValue.java >> line 101: >> >>> 99: } >>> 100: return h; >>> 101: } >> >> Just an example, but wouldn't: `Objects.hash(relative, origin, value)` here >> work just as well? > > @hjohn: yes, but at a price: Object.hash(Object ...) incurs overhead by > creating a temporary Object[] + boxing of a Boolean. Ah, I didn't realize you checked how this is optimized by the JIT. ------------- PR: https://git.openjdk.org/jfx/pull/821
