[ 
https://issues.apache.org/jira/browse/STORM-1245?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15141614#comment-15141614
 ] 

ASF GitHub Bot commented on STORM-1245:
---------------------------------------

Github user revans2 commented on a diff in the pull request:

    https://github.com/apache/storm/pull/1069#discussion_r52520905
  
    --- Diff: storm-core/src/jvm/org/apache/storm/utils/Utils.java ---
    @@ -1374,5 +1374,37 @@ public static RuntimeException 
wrapInRuntime(Exception e){
                 return new RuntimeException(e);
             }
         }
    +
    +    public static long bitXor(Object a, Object b) {
    +        return  ((Long) a) ^ ((Long) b);
    +    }
    +
    +    public static <V> List<V> makeList(V... args) {
    +        ArrayList<V> rtn = new ArrayList<V>();
    +        for (V o : args) {
    +            rtn.add(o);
    +        }
    +        return rtn;
    +    }
    +
    +    public static <V> List<V> makeList(java.util.Set<V> args) {
    --- End diff --
    
    This is not used, lets delete it.


> port backtype.storm.daemon.acker to java
> ----------------------------------------
>
>                 Key: STORM-1245
>                 URL: https://issues.apache.org/jira/browse/STORM-1245
>             Project: Apache Storm
>          Issue Type: New Feature
>            Reporter: Robert Joseph Evans
>            Assignee: Basti Liu
>              Labels: java-migration, jstorm-merger
>
> use 
> https://github.com/apache/storm/blob/jstorm-import/jstorm-core/src/main/java/com/alibaba/jstorm/task/acker/Acker.java
>  as a guide



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

Reply via email to