1
0

[MINOR] Fix checkstyle (#2117)

This commit is contained in:
leesf
2020-09-26 22:25:19 +08:00
committed by GitHub
parent 1be0b06ef8
commit b0f1b736f8

View File

@@ -57,7 +57,7 @@ public class BoundedInMemoryQueue<I, O> implements Iterable<O> {
/** Rate used for sampling records to determine avg record size in bytes. **/
public static final int RECORD_SAMPLING_RATE = 64;
/** Maximum records that will be cached **/
/** Maximum records that will be cached. **/
private static final int RECORD_CACHING_LIMIT = 128 * 1024;
private static final Logger LOG = LogManager.getLogger(BoundedInMemoryQueue.class);