Fixed LuaJC not writing java package to bytecode correctly #25

Closed
tomcashman wants to merge 1 commits from mini2Dx/master into master
tomcashman commented 2018-12-18 18:26:08 +00:00 (Migrated from github.com)

(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 class ExampleClass with package org.example

The following commit fixes the issue.

(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 class `ExampleClass` with package `org.example` The following commit fixes the issue.

Pull request closed

Sign in to join this conversation.
No Reviewers
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: open-autonomous-connection/luaj#25