I there 
I’ve got some problems using static imports (I’m using the 1.5beta JDK). Here are my imports code :
import org.lwjgl.*;
import org.lwjgl.input.*;
import org.lwjgl.opengl.*;
import org.lwjgl.opengl.glu.*;
import static org.lwjgl.opengl.GL11.*;
But when I want to compile my code, I get 2 errors :
<identifier expected>
import static org.lwjgl.opengl.GL11.*;
'.' expected
import static org.lwjgl.opengl.GL11.*;
I can’t find any ressources on the web… Can someone can help me ?
Thanks in advance !
