Skip to content

Commit

Permalink
Remove the one redundant space....
Browse files Browse the repository at this point in the history
  • Loading branch information
liangl authored and liangl committed May 28, 2019
1 parent 509ecf2 commit 01bda6b
Showing 1 changed file with 7 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,16 +15,15 @@
*/
package com.alibaba.csp.sentinel.node;

import java.util.List;
import java.util.Map;
import java.util.concurrent.ConcurrentHashMap;
import java.util.concurrent.atomic.AtomicInteger;

import com.alibaba.csp.sentinel.slots.statistic.base.LongAdder;
import com.alibaba.csp.sentinel.util.TimeUtil;
import com.alibaba.csp.sentinel.node.metric.MetricNode;
import com.alibaba.csp.sentinel.slots.statistic.base.LongAdder;
import com.alibaba.csp.sentinel.slots.statistic.metric.ArrayMetric;
import com.alibaba.csp.sentinel.slots.statistic.metric.Metric;
import com.alibaba.csp.sentinel.util.TimeUtil;

import java.util.List;
import java.util.Map;
import java.util.concurrent.ConcurrentHashMap;

/**
* <p>The statistic node keep three kinds of real-time statistics metrics:</p>
Expand Down Expand Up @@ -105,7 +104,7 @@ public class StatisticNode implements Node {
/**
* The counter for thread count.
*/
private LongAdder curThreadNum = new LongAdder();
private LongAdder curThreadNum = new LongAdder();

/**
* The last timestamp when metrics were fetched.
Expand Down

0 comments on commit 01bda6b

Please sign in to comment.