I receive this warning message in the output of my videogame. The game was tested on Raspberry Pi 3 with 32-bit Raspberry Pi OS and Raspberry Pi 4b with 64-bit Raspberry Pi OS. The game uses Java 11 and root privileges. The game was created using LibGDX framework and Pi4j library. What is that and how can this message affect the performance?
Asked
Active
Viewed 5,251 times
1
-
2Performance should be the least concerning aspect of a game with root privileges. – Paul Apr 15 '23 at 20:26
-
1A library that insists on using a hack like that probably isn’t a good library. – VGR Apr 15 '23 at 23:29
1 Answers
1
Based purely on the message and some trivial googling - it means
a programmer wants to call getCallerClass
it has been determined that it's not possible- since that call was removed in Java 8
the program that wanted to use it is telling you, uselessly, that it may underperform
See also this question.

Arfur Narf
- 392
- 1
- 5