You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@shardingsphere.apache.org by GitBox <gi...@apache.org> on 2020/03/26 08:49:54 UTC

[GitHub] [incubator-shardingsphere] wuguowei19880907 commented on issue #4952: Add operations on cursors to EncryptResultSet(Suitable for a single data source) by originalResultSet

wuguowei19880907 commented 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
   
   Did you say "xxx" 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:
users@infra.apache.org


With regards,
Apache Git Services