Reputation: 323
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?
Upvotes: 4
Views: 23792
Reputation: 532
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.
Upvotes: 4