Skip to content
Snippets Groups Projects
Commit 13f47603 authored by Julian Cerruti's avatar Julian Cerruti Committed by GitHub
Browse files

Merge pull request #248 from Intermodalics/fix/remapping_arguments_not_set_in_native_node

Fix remapping member variable not set if argument is not null
parents 46a9300b 4c3e048b
No related branches found
No related tags found
No related merge requests found
......@@ -53,6 +53,8 @@ public abstract class NativeNodeMain extends AbstractNodeMain {
// if no remapping is needed, create an empty array
if (remappings == null) {
remappingArguments = new String[0];
} else {
remappingArguments = remappings;
}
log.info("Trying to load native library '" + libName + "'...");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment