Fixed "switch without 'default' clause."

This commit is contained in:
yesji 2019-10-06 14:50:04 +05:30 committed by GitHub
parent 50e0baa6ec
commit a15285f348
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -125,6 +125,9 @@ public class CubotLidar extends HardwareModule {
getCpu().getRegisterSet().getRegister("X").setValue(unit.getWorld().getX());
getCpu().getRegisterSet().getRegister("Y").setValue(unit.getWorld().getY());
break;
default:
break;
}
}