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

Commit

Permalink
Rename class
Browse files Browse the repository at this point in the history
  • Loading branch information
Alex Eng committed Oct 29, 2013
1 parent 973aae0 commit fa6cb2c
Showing 1 changed file with 3 additions and 3 deletions.
Expand Up @@ -3,15 +3,15 @@
/**
* @author Alex Eng <a href="mailto:aeng@redhat.com">aeng@redhat.com</a>
*/
public class WordsStatistic extends AbstractStatistic {
public class WordStatistic extends AbstractStatistic {

private double remainingHours;

public WordsStatistic() {
public WordStatistic() {
super();
}

public WordsStatistic(int approved, int needReview, int untranslated,
public WordStatistic(int approved, int needReview, int untranslated,
int translated, int rejected) {
super(approved, needReview, untranslated, translated, rejected);
}
Expand Down

0 comments on commit fa6cb2c

Please sign in to comment.