summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNobuyoshi Nakada <nobu@ruby-lang.org>2023-09-30 02:04:48 +0900
committerNobuyoshi Nakada <nobu@ruby-lang.org>2023-09-30 02:09:29 +0900
commite8251602574d6736e48eafc239718a6a9d91d261 (patch)
tree037afafa5afa174210e3773c6f9bf781d67b7c96
parent5fa1e246b9ed9fda62c5416e0420f1dcd2dbb254 (diff)
Delete empty lines at EOF [ci skip]
-rw-r--r--misc/lldb_rb/commands/rp_command.py1
-rw-r--r--misc/lldb_rb/lldb_interface.py1
-rw-r--r--misc/lldb_rb/rb_base_command.py1
-rw-r--r--misc/lldb_rb/rb_heap_structs.py3
-rw-r--r--misc/lldb_rb/utils.py1
5 files changed, 0 insertions, 7 deletions
diff --git a/misc/lldb_rb/commands/rp_command.py b/misc/lldb_rb/commands/rp_command.py
index 9da9688b96..06b2516d50 100644
--- a/misc/lldb_rb/commands/rp_command.py
+++ b/misc/lldb_rb/commands/rp_command.py
@@ -13,4 +13,3 @@ class RbID2StrCommand(RbBaseCommand):
val = self.frame.EvaluateExpression(command)
inspector = RbInspector(debugger, result, self.ruby_globals)
inspector.inspect(val)
-
diff --git a/misc/lldb_rb/lldb_interface.py b/misc/lldb_rb/lldb_interface.py
index 893064db90..785a54b3e3 100644
--- a/misc/lldb_rb/lldb_interface.py
+++ b/misc/lldb_rb/lldb_interface.py
@@ -5,4 +5,3 @@ class LLDBInterface:
self.process = self.target.GetProcess()
self.thread = self.process.GetSelectedThread()
self.frame = self.thread.GetSelectedFrame()
-
diff --git a/misc/lldb_rb/rb_base_command.py b/misc/lldb_rb/rb_base_command.py
index 23c628971e..70a5addd6d 100644
--- a/misc/lldb_rb/rb_base_command.py
+++ b/misc/lldb_rb/rb_base_command.py
@@ -55,4 +55,3 @@ class RbBaseCommand(LLDBInterface):
def get_long_help(self):
return self.__class__.help_string
-
diff --git a/misc/lldb_rb/rb_heap_structs.py b/misc/lldb_rb/rb_heap_structs.py
index 0428b7fc3f..7222766ef3 100644
--- a/misc/lldb_rb/rb_heap_structs.py
+++ b/misc/lldb_rb/rb_heap_structs.py
@@ -135,6 +135,3 @@ class RbObject(LLDBInterface):
len = self.val.GetValueForExpressionPath("->as.heap.len")
return len
-
-
-
diff --git a/misc/lldb_rb/utils.py b/misc/lldb_rb/utils.py
index bd2c0330b8..c4a39b7a09 100644
--- a/misc/lldb_rb/utils.py
+++ b/misc/lldb_rb/utils.py
@@ -280,4 +280,3 @@ class RbInspector(LLDBInterface):
else:
print("Not-handled type %0#x" % rval.type, file=self.result)
print(val, file=self.result)
-