Open bflorat opened 5 years ago
This warning is harmless. The app continues to work.
The warning comes from the way jajuk gets the process id : Field field = proc.getClass().getDeclaredField("pid");
There's is a safe java 9 solution : https://docs.oracle.com/javase/9/docs/api/java/lang/Process.html#pid--
I suggest to ignore this warning unless we move to java 9.
What have we got to do to switch to Java 9 ?
I mean in java 9, the Process class has a pid() method so we can change the code to avoid the warning. That implies that Jajuk users switch to a java 9 or above version to use next version of Jajuk. if it's just to avoid a warning, I wonder if it's worth switching to java 9 or even 11 (LTS version).
Maybe we can wait until end of support of Java 8 (dec 2020) ?
I agree
To be fixed :