Android Question warning "thread was not initialized"

marcick

Well-Known Member
Licensed User
Longtime User
I'm using the threading library and everything works fine, but I always see in the top right window of the IDE the message "Variable "RDC_Thread" was not initialized. (warning #11)

Am I doing something of wrong ? I would like to get rid of this warning
This is the relevant code:

B4X:
Sub Process_Globals
    Dim RDC_Thread As Thread
End Sub

Sub Service_Create
    RDC_Thread.Initialise("RDC_ThreadSub")
 
Top