Skip to content

Commit e0c4558

Browse files
committed
Fix style.
1 parent 5295d9a commit e0c4558

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

graalpython/com.oracle.graal.python/src/com/oracle/graal/python/builtins/modules/PosixModuleBuiltins.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1020,8 +1020,8 @@ Object readOpaque(@SuppressWarnings("unused") VirtualFrame frame, int fd, long r
10201020
@Cached("create()") ReadFromChannelNode readNode) {
10211021
if (OpaqueBytes.isInOpaqueFilesystem(getResources().getFilePath(fd), getContext())) {
10221022
Channel channel = getResources().getFileChannel(fd, channelClassProfile);
1023-
ByteSequenceStorage bytes = readNode.execute(channel, ReadFromChannelNode.MAX_READ);
1024-
return new OpaqueBytes(Arrays.copyOf(bytes.getInternalByteArray(), bytes.length()));
1023+
ByteSequenceStorage bytes = readNode.execute(channel, ReadFromChannelNode.MAX_READ);
1024+
return new OpaqueBytes(Arrays.copyOf(bytes.getInternalByteArray(), bytes.length()));
10251025
}
10261026
return read(frame, fd, requestedSize, channelClassProfile, readNode);
10271027
}

0 commit comments

Comments
 (0)