This commit is contained in:
valeriu cosneanu 2024-11-01 00:36:01 +02:00
parent 3b189fc700
commit 49348fcab2

View file

@ -44,7 +44,7 @@ public final class ECIStringBuilder {
* @param value character whose lowest byte is to be appended
*/
public void append(char value) {
currentBytes.append((char) (value & 0xff));
currentBytes.append(value);
}
/**