v1.1.5
·
108 commits
to develop
since this release
Add
- String literals containing SJIS characters are remained as they are, not being converted into byte arrays.
- The older versions convert string literals containing SJIS characters into byte arrays with hexdecimal integers.
- Older versions convert
"日本語"intoCobolUtil.toBytes((byte)0x93, (byte)0xfa, (byte)0x96, (byte)0x7b, (byte)0x8c, (byte)0xea). - Latest version converts
"日本語"intoCobolUtil.stringToBytes("日本語").
- Older versions convert
- The older versions convert string literals containing SJIS characters into byte arrays with hexdecimal integers.
Fix
- Fix comparisons of COMP data.
- With older versions, comparisons of COMP data are invalid in some cases.