You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@zookeeper.apache.org by tamaashu <gi...@git.apache.org> on 2017/10/09 23:51:13 UTC

[GitHub] zookeeper pull request #399: ZOOKEEPER-2630: Use interface type instead of i...

GitHub user tamaashu opened a pull request:

    https://github.com/apache/zookeeper/pull/399

    ZOOKEEPER-2630: Use interface type instead of implementation type whe…

    Use interface type instead of implementation type when appropriate.
    
    There are a couple of places in code base where we declare a field / variable as implementation type (i.e. HashMap, HashSet) instead of interface type (i.e. Map, Set), while in other places we do the opposite by declaring as interface type. A quick check indicates that most if not all of these places could be updated so we have a consistent style over the code base (prefer using interface type), which is also a good coding style to stick per best practice.
    
    Checked and fixed Set, Map and List interface usages.
    
    Author: Tamas Penzes <ta...@cloudera.com>
    
    Reviewers: Abe Fine <af...@apache.org>, Michael Han <ha...@apache.org>
    
    Closes #354 from tamaashu/ZOOKEEPER-2630
    
    (cherry picked from commit 1165794be9587acccc02782dbff95bc482222528)

You can merge this pull request into a Git repository by running:

    $ git pull https://github.com/tamaashu/zookeeper ZOOKEEPER-2630-3.4

Alternatively you can review and apply these changes as the patch at:

    https://github.com/apache/zookeeper/pull/399.patch

To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:

    This closes #399
    
----
commit 3748ed5f8e1023c3e24f598c447de0d9cddd30b2
Author: Tamas Penzes <ta...@cloudera.com>
Date:   2017-09-11T16:55:05Z

    ZOOKEEPER-2630: Use interface type instead of implementation type whe…
    
    Use interface type instead of implementation type when appropriate.
    
    There are a couple of places in code base where we declare a field / variable as implementation type (i.e. HashMap, HashSet) instead of interface type (i.e. Map, Set), while in other places we do the opposite by declaring as interface type. A quick check indicates that most if not all of these places could be updated so we have a consistent style over the code base (prefer using interface type), which is also a good coding style to stick per best practice.
    
    Checked and fixed Set, Map and List interface usages.
    
    Author: Tamas Penzes <ta...@cloudera.com>
    
    Reviewers: Abe Fine <af...@apache.org>, Michael Han <ha...@apache.org>
    
    Closes #354 from tamaashu/ZOOKEEPER-2630
    
    (cherry picked from commit 1165794be9587acccc02782dbff95bc482222528)

----


---