Uploaded image for project: 'OpenNLP'
  1. OpenNLP
  2. OPENNLP-985

A condition that is always true.

    XMLWordPrintableJSON

Details

    • Bug
    • Status: Resolved
    • Trivial
    • Resolution: Fixed
    • None
    • 2.1.1
    • wsd
    • None

    Description

      I've found a code smell or typo in a recent github snapshot. (opennlp-snadbox)

      Path: opennlp-wsd/src/main/java/opennlp/tools/disambiguator/datareader/Paragraph.java

      85   public boolean contains(String wordTag) {
      86 
      87     for (Sentence isentence : this.getSsentences()) {
      88       for (Word iword : isentence.getIwords()) {
      89         if (iword.equals(iword))
      90           return true;
      91       }
      92     }
      93 
      94     return false;
      95   }
      

      Line 89 is always true. This might be a trivial issue but wanted to report just in case. Thanks!

      Attachments

        Issue Links

          Activity

            People

              kinow Bruno P. Kinoshita
              lifove JC
              Votes:
              0 Vote for this issue
              Watchers:
              2 Start watching this issue

              Dates

                Created:
                Updated:
                Resolved: