Fixed LuaJC not writing java package to bytecode correctly #25
Reference in New Issue
Block a user
Delete Branch "mini2Dx/master"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
(Note: I encountered this issue earlier today in https://github.com/mini2Dx/miniscript/ )
LuaJC was transforming package names (e.g.
org.example.ExampleClass) to class name prefixes (e.g.org_example_ExampleClass) with the default package being used. Based on the command line args, it should come out as classExampleClasswith packageorg.exampleThe following commit fixes the issue.
Fixed
Pull request closed