From f92d0c3d1936820df59a11575c4e6e72560a63e1 Mon Sep 17 00:00:00 2001 From: Volodymyr Chernetskyi <19735328+chernetskyi@users.noreply.github.com> Date: Wed, 9 Sep 2026 17:47:03 +0200 Subject: [PATCH] refactor: remove unused puts field from the Inspector record puts became a module-level local in f18082a, and it is never stored on an inspector instance. The record field is leftover and generates no code. --- inspect.tl | 1 - 1 file changed, 1 deletion(-) diff --git a/inspect.tl b/inspect.tl index 4ee3d10..ba6e495 100644 --- a/inspect.tl +++ b/inspect.tl @@ -248,7 +248,6 @@ local type Inspector = record newline: string indent: string cycles: {table: integer} - puts: function(string) end local Inspector_mt = {__index = Inspector}