You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tubemq.apache.org by GitBox <gi...@apache.org> on 2020/06/07 09:58:31 UTC

[GitHub] [incubator-tubemq] viviel opened a new pull request #138: [TUBEMQ-224] Fixed: Unnecessary conversion to string inspection for server module

viviel opened a new pull request #138:
URL: https://github.com/apache/incubator-tubemq/pull/138


   Fixed unnecessary method calls such as String.valueOf ()
   For exmple:
   ```
   String.valueOf(inputTopicName).trim();
   
   change to
   
   inputTopicName.trim();
   ```
   ```
   String.valueOf(inputConsumerId).trim();
   
   change to 
   
   inputConsumerId.trim();
   ```
   etc..


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



[GitHub] [incubator-tubemq] Technoboy- merged pull request #138: [TUBEMQ-224] Fixed: Unnecessary conversion to string inspection for server module

Posted by GitBox <gi...@apache.org>.
Technoboy- merged pull request #138:
URL: https://github.com/apache/incubator-tubemq/pull/138


   


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