Skip to content

getRandomWord(n) only returns words of length n #10

@Bathlamos

Description

@Bathlamos

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);
    }

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions