[jira] [Commented] (OPENNLP-985) A condition that is always true.

2023-02-13 Thread ASF GitHub Bot (Jira)


[ 
https://issues.apache.org/jira/browse/OPENNLP-985?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17687953#comment-17687953
 ] 

ASF GitHub Bot commented on OPENNLP-985:


kinow merged PR #1:
URL: https://github.com/apache/opennlp-sandbox/pull/1




> A condition that is always true.
> 
>
> Key: OPENNLP-985
> URL: https://issues.apache.org/jira/browse/OPENNLP-985
> Project: OpenNLP
>  Issue Type: Bug
>  Components: wsd
>Reporter: JC
>Priority: Trivial
>
> 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
> {code: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   }
> {code}
> Line 89 is always true. This might be a trivial issue but wanted to report 
> just in case. Thanks!



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Commented] (OPENNLP-985) A condition that is always true.

2023-02-12 Thread ASF GitHub Bot (Jira)


[ 
https://issues.apache.org/jira/browse/OPENNLP-985?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17687618#comment-17687618
 ] 

ASF GitHub Bot commented on OPENNLP-985:


kinow commented on PR #1:
URL: https://github.com/apache/opennlp-sandbox/pull/1#issuecomment-1427118988

   > @kinow Could you resolve the conflict so we can re-evaluate if this PR 
holds all CI steps and can be merged safely?
   
   Thanks @mawiesne . Had completely forgotten about this one, thanks for the 
bump. Conflicts fixed, rebased. Thanks.




> A condition that is always true.
> 
>
> Key: OPENNLP-985
> URL: https://issues.apache.org/jira/browse/OPENNLP-985
> Project: OpenNLP
>  Issue Type: Bug
>  Components: wsd
>Reporter: JC
>Priority: Trivial
>
> 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
> {code: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   }
> {code}
> Line 89 is always true. This might be a trivial issue but wanted to report 
> just in case. Thanks!



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Commented] (OPENNLP-985) A condition that is always true.

2023-02-12 Thread ASF GitHub Bot (Jira)


[ 
https://issues.apache.org/jira/browse/OPENNLP-985?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17687555#comment-17687555
 ] 

ASF GitHub Bot commented on OPENNLP-985:


mawiesne commented on PR #1:
URL: https://github.com/apache/opennlp-sandbox/pull/1#issuecomment-1427000580

   @kinow Could you resolve the conflict so we can re-evaluate if this PR holds 
all CI steps and can be merged safely?




> A condition that is always true.
> 
>
> Key: OPENNLP-985
> URL: https://issues.apache.org/jira/browse/OPENNLP-985
> Project: OpenNLP
>  Issue Type: Bug
>  Components: wsd
>Reporter: JC
>Priority: Trivial
>
> 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
> {code: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   }
> {code}
> Line 89 is always true. This might be a trivial issue but wanted to report 
> just in case. Thanks!



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Commented] (OPENNLP-985) A condition that is always true.

2017-03-04 Thread ASF GitHub Bot (JIRA)

[ 
https://issues.apache.org/jira/browse/OPENNLP-985?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15895583#comment-15895583
 ] 

ASF GitHub Bot commented on OPENNLP-985:


GitHub user kinow opened a pull request:

https://github.com/apache/opennlp-sandbox/pull/1

OPENNLP-985: fix an if statement that always returned true.

Fix for [OPENNLP-985](https://issues.apache.org/jira/browse/OPENNLP-985).

You can merge this pull request into a Git repository by running:

$ git pull https://github.com/kinow/opennlp-sandbox fix-OPENNLP-985

Alternatively you can review and apply these changes as the patch at:

https://github.com/apache/opennlp-sandbox/pull/1.patch

To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:

This closes #1


commit a457e62f986c96c7202c49f037df71fec2ef1d43
Author: Bruno P. Kinoshita 
Date:   2017-03-04T08:19:21Z

OPENNLP-985: fix an if statement that always returned true.




> A condition that is always true.
> 
>
> Key: OPENNLP-985
> URL: https://issues.apache.org/jira/browse/OPENNLP-985
> Project: OpenNLP
>  Issue Type: Bug
>  Components: wsd
>Reporter: JC
>Priority: Trivial
>
> 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
> {code: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   }
> {code}
> Line 89 is always true. This might be a trivial issue but wanted to report 
> just in case. Thanks!



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)