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

Commit

Permalink
Rename var name in method for remaining hours
Browse files Browse the repository at this point in the history
  • Loading branch information
Alex Eng committed Sep 26, 2012
1 parent 65eda69 commit 77e1ad0
Showing 1 changed file with 3 additions and 3 deletions.
Expand Up @@ -91,10 +91,10 @@ public int getApprovedPercent(boolean byWords)
}
}

private double remainingHours(int fuzzyWords, int untranslatedWords)
private double remainingHours(int fuzzy, int untranslated)
{
double untransHours = untranslatedWords / 250.0;
double fuzzyHours = fuzzyWords / 500.0;
double untransHours = untranslated / 250.0;
double fuzzyHours = fuzzy / 500.0;
double remainHours = untransHours + fuzzyHours;
return remainHours;
}
Expand Down

0 comments on commit 77e1ad0

Please sign in to comment.