mantono / DuplicateSearcher

Identification of Duplicate Tickets in Issue Tracking Systems for Software Development
0 stars 0 forks source link

Check if an issue is viable for analysis or should be filtered #20

Closed mantono closed 8 years ago

mantono commented 8 years ago
    /**
     * Check if this issue contains enough textual data to actually be analyzed
     * and compared to other issues (after stop lists and are applied)
     * 
     * @return true if it is considered viable for analysis, else false.
     */
    public boolean isViable()
    {
        // logic here
    }
mantono commented 8 years ago

Even something as simple as if(title.size() + body.size() < 10) return false; could go quite a long way for removing potential false positives.