Agustín

Results 8 comments of Agustín

Good find! Still I'm not sure the intention was to share the lock over a space (and it wouldn't really make sense if serialized over the wire). Seems like the...

Sure, they are pretty much equivalent in this case with the added benefit of being Loom proof should the sender or receiver become green threads in the future. ``` protected...

Apache commons-codec for example throws a checked DecoderException https://github.com/apache/commons-codec/blob/master/src/main/java/org/apache/commons/codec/binary/Hex.java#L73 Should jpos hex2byte throw? Should it be a checked or an unchecked exception? I'd go for a checked exception if breaking...

Also it might throw exceptions in future JVM releases according to the JEP-390 https://openjdk.org/jeps/390 > Attempts to synchronize on instances of these classes will produce exceptions.

[PR](https://github.com/jpos/jPOS/pull/586)

Definitely! I wouldn't expect otherwise!