Remove comments

Removed comments
This commit is contained in:
hcraigmiller 2022-05-10 19:54:01 -07:00 committed by GitHub
parent 8f84d831fa
commit ea30ad3537
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -199,13 +199,13 @@ public class Parachute extends RecoveryDevice {
if (preset.has(ComponentPreset.PACKED_LENGTH)) {
this.PackedLength = preset.get(ComponentPreset.PACKED_LENGTH);
if (PackedLength > 0) {
length = PackedLength; // Conditions: PackedLength exists, PackedLength > 0
length = PackedLength;
}
else {
length = InitialPackedLength; // Conditions: PackedLength exists, PackedLength !> 0
length = InitialPackedLength;
}
} else {
length = InitialPackedLength; // Conditions: PackedLength does not exist
length = InitialPackedLength;
}
//// END Implement parachute packed length
//// BEGIN Implement parachute packed diameter