From 4c259db56f38a7ce61e3a6d3bb94754745827e23 Mon Sep 17 00:00:00 2001 From: maxonfjvipon Date: Wed, 10 Apr 2024 15:43:51 +0300 Subject: [PATCH] fix(#3071): checkstyle --- eo-runtime/src/main/java/EOorg/EOeolang/Heaps.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/eo-runtime/src/main/java/EOorg/EOeolang/Heaps.java b/eo-runtime/src/main/java/EOorg/EOeolang/Heaps.java index 11dbc4b06d..00ae973236 100644 --- a/eo-runtime/src/main/java/EOorg/EOeolang/Heaps.java +++ b/eo-runtime/src/main/java/EOorg/EOeolang/Heaps.java @@ -84,6 +84,8 @@ int malloc(final Phi phi, final int size) { /** * Get data from the block in memory by identifier. * @param identifier Identifier of the pointer + * @param offset Offset to start reading from + * @param length Length of bytes to read * @return Bytes from the block in memory */ byte[] read(final int identifier, final int offset, final int length) {