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:
[email protected]


Reply via email to