datafactory icon indicating copy to clipboard operation
datafactory copied to clipboard

getRandomWord(n) only returns words of length n

Open Bathlamos opened this issue 10 years ago • 1 comments

At line 503 of DataFactory.java, the following method

    public String getRandomWord(int length) {
        return getRandomWord(length, length);
    }

should be

    public String getRandomWord(int length) {
        return getRandomWord(0, length);
    }

Bathlamos avatar Jul 26 '15 20:07 Bathlamos

this is the same as issue #8

xenoterracide avatar Jul 31 '15 22:07 xenoterracide