Skip to content

Commit

Permalink
Removed extra semicolon
Browse files Browse the repository at this point in the history
  • Loading branch information
don-smith committed Apr 27, 2015
1 parent eb38ece commit de937c4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion astro/Comet.java
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ private Xyz CometStatusNearPara(double fJd) {
/ (1.0 + 9.0 * this.fE)) * fC1 * fX1;
double fX = this.fQ * fD1 * (1.0 - fTanV2 * fTanV2);
double fY = 2.0 * this.fQ * fD1 * fTanV2;
return new Xyz(fX, fY, 0.0);;
return new Xyz(fX, fY, 0.0);
}

/**
Expand Down

0 comments on commit de937c4

Please sign in to comment.