Skip to content

Commit

Permalink
HDFS-17455. Fix checkstytle
Browse files Browse the repository at this point in the history
  • Loading branch information
haiyang1987 committed Apr 7, 2024
1 parent a638efd commit 2c9a6fb
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -317,7 +317,7 @@ public void testCreateBlockReaderWhenInvalidBlockTokenException() throws
long fileLen = 1024 * 64;
EnumSet<CreateFlag> createFlags = EnumSet.of(CREATE);
FSDataOutputStream out = fs.create(path, FsPermission.getFileDefault(), createFlags,
fs.getConf().getInt(IO_FILE_BUFFER_SIZE_KEY, 4096),(short) 3,
fs.getConf().getInt(IO_FILE_BUFFER_SIZE_KEY, 4096), (short) 3,
fs.getDefaultBlockSize(path), null);
int bufferLen = 1024;
byte[] toWrite = new byte[bufferLen];
Expand Down

0 comments on commit 2c9a6fb

Please sign in to comment.