I am using the library Quaternion (jMonkey) in Java which I have imported as external jar files.
Lately, I tried to use another library also called Quaternion. The problem is that since I imported this library e.g "Import com.etc.etc.Quaternion;" even if I have commented out the part where it is imported the compiler doesn't recognise the methods of the initial library (jMonkey) wich was imported as jar.
How can I define that the methods are from the external jar jMonkey library?
I just found the solution, it was pretty stupid.
The part where the libraries where imported was not expanded and for some reason the only library showing was the one that I didn't want to use. Expanded this part of code, uncommented the jMonkey library and done!