Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
brainfood
/
ofbiz-rhino
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Graphs
Network
Create a new issue
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
2b75b07e
authored
2014-04-16 10:46:23 -0500
by
Adam Heath
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Fix nested list processing of log arguments.
1 parent
d2ec9a6d
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
2 deletions
src/com/brainfood/ofbiz/rhino/OfbizRhinoContainer.java
src/com/brainfood/ofbiz/rhino/OfbizRhinoContainer.java
View file @
2b75b07
...
...
@@ -4,7 +4,6 @@ import java.io.File;
import
java.io.FileNotFoundException
;
import
java.io.FileReader
;
import
java.io.IOException
;
import
java.util.Arrays
;
import
java.util.HashMap
;
import
java.util.Map
;
...
...
@@ -64,7 +63,7 @@ public class OfbizRhinoContainer extends RhinoContainer<OfbizRhinoContainer> {
}
public
void
print
(
Context
cx
,
Scriptable
thisObj
,
Object
[]
args
,
Function
funObj
)
{
Debug
.
logInfo
(
"print:%s"
,
module
,
Arrays
.
asList
(
args
)
);
Debug
.
logInfo
(
"print:%s"
,
module
,
args
);
}
public
void
processSource
(
Context
cx
,
Scriptable
thisObj
,
String
filename
)
throws
FileNotFoundException
,
IOException
{
...
...
Please
register
or
sign in
to post a comment