wuguowei19880907 edited a comment on issue #4952: Add operations on cursors to 
EncryptResultSet(Suitable for a single data source) by originalResultSet
URL: 
https://github.com/apache/incubator-shardingsphere/pull/4952#issuecomment-604305029
 
 
   > Please inline the return value
   
   @terrymanu 
   Did you say **inline the return value** like this:
   ```
       @Override
       public boolean isFirst() throws SQLException {
           boolean first = originalResultSet.isFirst();
           return first;
       }
   ```
   change to ->
   ```
       @Override
       public boolean isFirst() throws SQLException {
           return originalResultSet.isFirst();
       }
   ```

----------------------------------------------------------------
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:
us...@infra.apache.org


With regards,
Apache Git Services

Reply via email to