Bug? Private Process_Globals show when compiling code module to library

jmon

Well-Known Member
Licensed User
Longtime User
Hi,

This one is not a big deal, but I noticed that when I export a code module to a library, the "Private Sub Process_Globals" still shows in the list of methods of the library. The weird thing is that it is hidden when the code module is not compiled to library.

B4X:
'Static code module
Private Sub Process_Globals
    Private JOColor As JavaObject
End Sub


libCompileBug.png
- >
libCompileBug2.png


As I said, it's not a big deal, it's just aesthetic. :) Still I have a question: What is the purpose of being able to access the process_globals from the method list? Why isn't it private by default?

Thanks and have a nice week end!
 
Top