[
https://issues.apache.org/jira/browse/NUTCH-2475?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Sebastian Nagel resolved NUTCH-2475.
------------------------------------
Resolution: Fixed
Assignee: Sebastian Nagel
Thanks, [~songwang]! Trivial fix committed to 1.x
([d0a4abfd|https://gitbox.apache.org/repos/asf?p=nutch.git;a=commit;h=d0a4abfd7cd294d7ffb14b6947c243e46c65f265])
and 2.x
([e56f82d|https://gitbox.apache.org/repos/asf?p=nutch.git;a=commit;h=e56f82d9178ecb1de1147c73d9c0c9a55ed63ec3]).
> If and else-if branches has the same condition
> ----------------------------------------------
>
> Key: NUTCH-2475
> URL: https://issues.apache.org/jira/browse/NUTCH-2475
> Project: Nutch
> Issue Type: Bug
> Components: plugin, protocol
> Affects Versions: 2.2, 1.14
> Reporter: songwanging
> Assignee: Sebastian Nagel
> Priority: Minor
> Fix For: 2.4, 1.16
>
>
> Our tool DeepTect has detected a piece of buggy code snippet, in which the if
> and else branches has the same condition.
> Path:
> nutch/src/plugin/protocol-ftp/src/java/org/apache/nutch/protocol/ftp/Client.java
>
> {code:java}
> private boolean _notBadReply(int reply) {
> if (FTPReply.isPositiveCompletion(reply)) {
> // do nothing
> ...
> } else if (reply == 451) { // FTPReply.ACTION_ABORTED
> // some ftp servers reply 451, e.g.,
> // ProFTPD [ftp.kernel.org]
> // there is second reply witing? no!
> // getReply();
> } else if (reply == 451) { // FTPReply.ACTION_ABORTED
> } else {
> // what other kind of ftp server out there?
> return false;
> }
> return true;
> }
> {code}
--
This message was sent by Atlassian JIRA
(v7.6.3#76005)