Skip to content

Commit

Permalink
Remove usages of deprecated stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
anistor authored and tristantarrant committed Nov 25, 2015
1 parent 1940a8b commit 706cafa
Showing 1 changed file with 5 additions and 5 deletions.
Expand Up @@ -4,13 +4,13 @@
import java.util.Map;

/**
*
* {@link ContinuousQueryResultListener} which counts number of calls for each key.
*
*
* {@link ContinuousQueryListener} which counts number of calls for each key.
*
* @author vjuranek
* @since 8.0
*/
public class CallCountingCQResultListener<K, V> implements ContinuousQueryResultListener<K, V> {
public class CallCountingCQResultListener<K, V> implements ContinuousQueryListener<K, V> {

private final Map<K, Integer> joined = new HashMap<K, Integer>();
private final Map<K, Integer> left = new HashMap<K, Integer>();
Expand Down Expand Up @@ -39,4 +39,4 @@ private void incrementNumberOfCalls(K key, Map<K, Integer> callMap) {
callMap.put(key, calls == null ? 1 : calls + 1);
}
}
}
}

0 comments on commit 706cafa

Please sign in to comment.