You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@rocketmq.apache.org by GitBox <gi...@apache.org> on 2019/04/11 03:23:39 UTC

[GitHub] [rocketmq] faicm opened a new issue #1151: Delete useless code

faicm opened a new issue #1151: Delete useless code
URL: https://github.com/apache/rocketmq/issues/1151
 
 
   
   DLedgerCommitLog.java  
   
   method is 
   
   @Override
       public boolean load() {
            super.load();
           if (!result) {
               return false;
           }
   
           return true;
       }
   
   
   It should be amended to read
   
    public boolean load() {
           return super.load();
     }
   

----------------------------------------------------------------
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


With regards,
Apache Git Services