This code produces the following error.
Project settings saved
Building "Test1"
f:\Installed\WirelessToolkit2.1\apps\Test1\src\Test1.java:114: non-static variable display cannot be referenced from a static context
Test1.display.callSerially(this);
^
1 error
com.sun.kvem.ktools.ExecutionException
Build failed
BUT on 'commenting in' the first /*static*/ as follows:
public /*static*/ Display display = null; The code compiles.
How is that "POINT X" a static context?