Skip to content

Commit

Permalink
[bugfix][core] remove redundant initializer for maxLogNum variable
Browse files Browse the repository at this point in the history
  • Loading branch information
wgzhao committed Feb 2, 2024
1 parent fa2b95d commit 40c9ed9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ public class StdoutPluginCollector

private static final int DEFAULT_MAX_DIRTY_NUM = 128;
private final AtomicInteger currentLogNum = new AtomicInteger(0);
private AtomicInteger maxLogNum = new AtomicInteger(0);
private final AtomicInteger maxLogNum;

public StdoutPluginCollector(Configuration configuration, Communication communication, PluginType type)
{
Expand Down

0 comments on commit 40c9ed9

Please sign in to comment.