This is an automated email from the ASF dual-hosted git repository.
ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-bsf.git
The following commit(s) were added to refs/heads/master by this push:
new 4c6a0e6 Use plain code comment
4c6a0e6 is described below
commit 4c6a0e63d6f7992109574a3d56dfca4e5439174c
Author: Gary Gregory <[email protected]>
AuthorDate: Sun Jan 4 10:31:15 2026 -0500
Use plain code comment
---
src/main/java/org/apache/bsf/engines/netrexx/NetRexxEngine.java | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/main/java/org/apache/bsf/engines/netrexx/NetRexxEngine.java
b/src/main/java/org/apache/bsf/engines/netrexx/NetRexxEngine.java
index 46bc0a9..24bd5c5 100644
--- a/src/main/java/org/apache/bsf/engines/netrexx/NetRexxEngine.java
+++ b/src/main/java/org/apache/bsf/engines/netrexx/NetRexxEngine.java
@@ -166,13 +166,13 @@ public class NetRexxEngine extends BSFEngineImpl
Object callStatic(Class rexxclass, String method, Object[] args)
throws BSFException
{
- //***** ISSUE: Currently supports only static methods
+ // ISSUE: Currently supports only static methods
Object retval = null;
try
{
if (rexxclass != null)
{
- //***** This should call the lookup used in BML, for typesafety
+ // This should call the lookup used in BML, for typesafety
Class[] argtypes=new Class[args.length];
for(int i=0;i<args.length;++i)
argtypes[i]=args[i].getClass();