Closed ghost closed 6 years ago
https://github.com/Tsuser1/Modern-LWC/blob/4973f9806e85f27da13aa2c45201f45476867f18/src/main/java/com/griefcraft/cache/BlockCache.java#L121
nextId is int and materialId is Integer. Is this compare correct?
int
Integer
It should be fine due to Java's autoboxing feature. See https://docs.oracle.com/javase/tutorial/java/data/autoboxing.html
Thanks for the response. I understand it! close issue....
https://github.com/Tsuser1/Modern-LWC/blob/4973f9806e85f27da13aa2c45201f45476867f18/src/main/java/com/griefcraft/cache/BlockCache.java#L121
nextId is
int
and materialId isInteger
. Is this compare correct?