Optimize some redundant stuff

This commit is contained in:
techmetx11 2023-03-29 23:33:23 +00:00
parent 7755ed4ac8
commit 73d2ed6f77
No known key found for this signature in database
GPG Key ID: 20E0C88A0E7E5AF2
1 changed files with 2 additions and 2 deletions

View File

@ -64,8 +64,8 @@ def parse_description(desc : JSON::Any?) : String?
length = command["length"].as_i
if start_index > 0 && start_index - index > 0
str << content[index..(start_index - 1)]
index += start_index - index
str << content[index...start_index]
index = start_index
end
str << parse_command(command, content[start_index, length])