From 78a303212d62f4e941a60282d19e9488af7874ae Mon Sep 17 00:00:00 2001 From: islandempty <69080478+islandempty@users.noreply.github.com> Date: Wed, 16 Jun 2021 21:50:54 +0800 Subject: [PATCH] Update IOUtils.java --- protocol/src/main/java/com/zfoo/protocol/util/IOUtils.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/protocol/src/main/java/com/zfoo/protocol/util/IOUtils.java b/protocol/src/main/java/com/zfoo/protocol/util/IOUtils.java index 57710f83..230d571b 100644 --- a/protocol/src/main/java/com/zfoo/protocol/util/IOUtils.java +++ b/protocol/src/main/java/com/zfoo/protocol/util/IOUtils.java @@ -23,7 +23,7 @@ public abstract class IOUtils { // Represents the end-of-file (or stream) public static final int EOF = -1; - // The number of bytes in a kilobyte + // The number of bytes in a byte public static final int ONE_BYTE = 1; // The number of bytes in a kilobyte public static final int BYTES_PER_KB = ONE_BYTE * 1024;