Hello! We've checked your code with [AppChecker static analyzer](https://cnpo.ru/en/solutions/appchecker.php) and found possible bug: https://github.com/Microsoft/vsminecraft/blob/19ae7b5744bc4bb0bb890303b288af2b193f5ca4/minecraftpkg/MekanismModSample/src/main/java/mekanism/common/multipart/MultipartTransmitter.java#L95 ``` if(TransmissionType.checkTransmissionType(transmitter, getTransmissionType())); { return ((IGridTransmitter<A, N>)transmitter).getTransmitterNetwork(); } ``` return doesn't refer to if-statement. if-statement block is empty; It could be not a bug, but in the same file there is [correct code](https://github.com/Microsoft/vsminecraft/blob/19ae7b5744bc4bb0bb890303b288af2b193f5ca4/minecraftpkg/MekanismModSample/src/main/java/mekanism/common/multipart/MultipartTransmitter.java#L59): ``` if(TransmissionType.checkTransmissionType(transmitter, getTransmissionType())) { return sideCoord; } ``` Possible defect was found by Echelon Team with [AppChecker static analyzer](https://cnpo.ru/en/solutions/appchecker.php)
Hello!
We've checked your code with AppChecker static analyzer and found possible bug:
https://github.com/Microsoft/vsminecraft/blob/19ae7b5744bc4bb0bb890303b288af2b193f5ca4/minecraftpkg/MekanismModSample/src/main/java/mekanism/common/multipart/MultipartTransmitter.java#L95
return doesn't refer to if-statement. if-statement block is empty;
It could be not a bug, but in the same file there is correct code:
Possible defect was found by Echelon Team with AppChecker static analyzer