diff --git a/shared/src/main/scala/io/kaitai/struct/languages/JavaCompiler.scala b/shared/src/main/scala/io/kaitai/struct/languages/JavaCompiler.scala index 5e952dda4..c30936146 100644 --- a/shared/src/main/scala/io/kaitai/struct/languages/JavaCompiler.scala +++ b/shared/src/main/scala/io/kaitai/struct/languages/JavaCompiler.scala @@ -494,8 +494,8 @@ class JavaCompiler(typeProvider: ClassTypeProvider, config: RuntimeConfig) override def popPos(io: String): Unit = out.puts(s"$io.seek(_pos);") - // NOTE: the compiler does not need to output alignToByte() calls for Java anymore, since the byte - // alignment is handled by the runtime library since commit + // NOTE: the compiler does not need to output alignToByte() calls for Java anymore, + // since the byte alignment is handled by the runtime library since commit // https://github.com/kaitai-io/kaitai_struct_java_runtime/commit/1bc75aa91199588a1cb12a5a1c672b80b66619ac override def alignToByte(io: String): Unit = {} diff --git a/shared/src/main/scala/io/kaitai/struct/languages/PythonCompiler.scala b/shared/src/main/scala/io/kaitai/struct/languages/PythonCompiler.scala index 8ec3e69db..1d227dcf1 100644 --- a/shared/src/main/scala/io/kaitai/struct/languages/PythonCompiler.scala +++ b/shared/src/main/scala/io/kaitai/struct/languages/PythonCompiler.scala @@ -483,8 +483,8 @@ class PythonCompiler(typeProvider: ClassTypeProvider, config: RuntimeConfig) override def popPos(io: String): Unit = out.puts(s"$io.seek(_pos)") - // NOTE: the compiler does not need to output alignToByte() calls for Python anymore, since the byte - // alignment is handled by the runtime library since commit + // NOTE: the compiler does not need to output align_to_byte() calls for Python anymore, + // since the byte alignment is handled by the runtime library since commit // https://github.com/kaitai-io/kaitai_struct_python_runtime/commit/1cb84b84d358e1cdffe35845d1e6688bff923952 override def alignToByte(io: String): Unit = {}