He-Pin commented on PR #1247:
URL: https://github.com/apache/pekko/pull/1247#issuecomment-2057225755
In BoxedRuntime.java
```java
public static byte unboxToByte(Object b) {
return b == null ? 0 : ((java.lang.Byte)b).byteValue();
}
public static java.lang.Byte boxToByte(byte b) {
return java.lang.Byte.valueOf(b);
}
```
In Byte.java
```java
public boolean equals(Object obj) {
if (obj instanceof Byte) {
return value == ((Byte)obj).byteValue();
}
return false;
}
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]