Slackbot
05/23/2022, 6:23 PMDariusz Kuc
05/23/2022, 6:23 PMDariusz Kuc
05/23/2022, 6:24 PMChris Lee
05/23/2022, 6:27 PMDariusz Kuc
05/23/2022, 6:27 PMChris Lee
05/23/2022, 6:28 PMDariusz Kuc
05/23/2022, 6:28 PMDariusz Kuc
05/23/2022, 6:28 PMDariusz Kuc
05/23/2022, 6:31 PMgrossws
05/24/2022, 1:03 AMDariusz Kuc
05/24/2022, 1:08 AMChris Lee
05/24/2022, 1:10 AMgrossws
05/24/2022, 1:35 AMbb.flip()
where bb
is a ByteBuffer
against java.base in jdk11 it will generate invokevirtual for the ByteBuffer#flip
instead of Buffer#flip
(which was final method in jdk8 and will fail with no such method in runtime). But if you set either --release
or -source
+ -target
+ `-bootclasspath`/`--system` it would call Buffer#flip
as it should.