Skip to content

Issue with stopword check in Stopwords.java #5

@jerisalan

Description

@jerisalan

In line #39 within file Stopwords.java, you are supposed to check if each word in the string is a stopword or not. In the current version of the code, it seems like the the entire string is being evaluated to see if it is a stopword which is wrong. Here is the wrong snippet,
if(isStopword(string)) continue;
which should be changed to:
if(isStopword(string)) continue;

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