Skip to content
This repository has been archived by the owner on Nov 9, 2017. It is now read-only.

Commit

Permalink
Fix wrong calculation of remaining hours
Browse files Browse the repository at this point in the history
  • Loading branch information
Alex Eng committed Oct 30, 2013
1 parent f8c94e7 commit aba8350
Showing 1 changed file with 1 addition and 2 deletions.
Expand Up @@ -101,9 +101,8 @@ private void countRemainingHours() {
if (unit.equals(StatUnit.WORD)) {
double untransHours = translationCount.getUntranslated() / 250.0;
double fuzzyHours = translationCount.getNeedReview() / 500.0;
double translatedHours = translationCount.getTranslated() / 500.0;

remainingHours = untransHours + fuzzyHours + translatedHours;
remainingHours = untransHours + fuzzyHours;
}
}

Expand Down

0 comments on commit aba8350

Please sign in to comment.