You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@fluo.apache.org by keith-turner <gi...@git.apache.org> on 2016/08/11 14:33:03 UTC

[GitHub] incubator-fluo issue #758: Return type does not match parameter type for get...

GitHub user keith-turner opened an issue:

    https://github.com/apache/incubator-fluo/issues/758

    Return type does not match parameter type for get(Collection<RowColumn>)

    The following method was added in #626.  
    
    ```java
    interface Snapshot {
      Map<Bytes, Map<Column, Bytes>> get(Collection<RowColumn>);
    }
    ```
    
    Recently I was trying to use it with the Fluo tour and found the mismatch between input and output types annoying.  I think the following would be better.
    
    ```java
    interface Snapshot {
      Map<RowColumn, Bytes> get(Collection<RowColumn>);
    }
    ```


----

----


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

[GitHub] incubator-fluo issue #758: Return type does not match parameter type for get...

Posted by asfgit <gi...@git.apache.org>.
Github user asfgit closed the issue at:

    https://github.com/apache/incubator-fluo/issues/758


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---