B4J Question Bug in B4J 9.80?

hgs

New Member
Licensed User
Longtime User
Hi,

creating a small prog using a list object leads to an error (warning) message in debugger:

'Non-UI application (console / server application)
#Region Project Attributes
#CommandLineArgs:
#MergeLibraries: True
#End Region

Sub Process_Globals

End Sub

Sub AppStart (Args() As String)

Dim l As List
l.Initialize

l.Add("Item 1")
l.Add("Item 2")

Log(l)
End Sub


Wenn I put a breakpoint at i.e. Log(l) and hover my mouse over l, it shows an warning message:

WARNING: An illegal reflective access operation has occurred
WARNING: Illegal reflective access by anywheresoftware.b4a.shell.Shell (file:/C:/Program%20Files/Anywhere%20Software/B4J/Libraries/jDebug.jar) to field java.util.ArrayList.elementData
WARNING: Please consider reporting this to the maintainers of anywheresoftware.b4a.shell.Shell
WARNING: Use --illegal-access=warn to enable warnings of further illegal reflective access operations
WARNING: All illegal access operations will be denied in a future release



 
Top