NetRexx 1.122

classic Classic list List threaded Threaded
2 messages Options
Reply | Threaded
Open this post in threaded view
|

NetRexx 1.122

Mike Cowlishaw-3
This update is now available at:

  http://www2.hursley.ibm.com/netrexx/

This is a refresh that works around the Java 1.1.4 JIT problem reported
here earlier.  It also incorporates some minor fixes and updates; see:

  http://www2.hursley.ibm.com/netrexx/nrchange.htm

for details.  There are no documentation or functional changes.

In case anyone else has a similar problem, the workaround for the JIT
defect was to change:

    ochar=Character.toUpperCase(chars[0])
to
    ochar=chars[0]
    ochar=Character.toUpperCase(ochar)
--
Mike Cowlishaw
IBM Fellow, IBM UK Laboratories
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
To unsubscribe from this mailing list ( ibm-netrexx ), please send a note to
[hidden email]
with the following message in the body of the note
unsubscribe ibm-netrexx <e-mail address>

Reply | Threaded
Open this post in threaded view
|

Re: NetRexx 1.122

Mike Cowlishaw-3
The 1.1.4 JIT problem is probably OS/2 only.  It is unlikely to apply
to Solaris.

--
Mike Cowlishaw
IBM Fellow, IBM UK Laboratories
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
To unsubscribe from this mailing list ( ibm-netrexx ), please send a note to
[hidden email]
with the following message in the body of the note
unsubscribe ibm-netrexx <e-mail address>