You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by GitBox <gi...@apache.org> on 2020/08/19 07:55:54 UTC

[GitHub] [camel] gnodet commented on pull request #4089: Removes unreachable branch on camel-aws-s3 client implementations

gnodet commented on pull request #4089:
URL: https://github.com/apache/camel/pull/4089#issuecomment-675915485


   @oscerd I've merged the commit.  There were 2 branches in a conditional if that could never be executed because they were written like:
   ```
     if ([condition]) {
      ...
     } else if (![condition]) {
      ...
     } else {
      ...
     }
   ```
   So the last branch can never be executed.


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org