fixed ugly indents
This commit is contained in:
Keenan D. Buckley
2020-03-08 15:09:19 -06:00
parent e7d9842416
commit 8ba12987d3
@@ -44,9 +44,9 @@ public class StorageFirePID extends CommandBase {
@Override
public boolean isFinished() {
double error = (m_intakeStartPos + StorageConstants.STORAGE_FULL_BALL) - m_storage.getEncoderPosInches();
if (m_storage.getEncoderVel() == 0 && Math.abs(error) < 0.5) {
return true;
}
if (m_storage.getEncoderVel() == 0 && Math.abs(error) < 0.5) {
return true;
}
return false;
}
}