Skip to content

Commit

Permalink
final fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
shuky19 committed Jun 3, 2014
1 parent 86b9454 commit fc20150
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 4 deletions.
3 changes: 0 additions & 3 deletions debugger/ruby_imp/ruby_debugger_connector.py
Expand Up @@ -206,7 +206,6 @@ def handle_response(self):
else:
pass

print(file_name)
if PathHelper.is_same_path(PathHelper.get_sublime_require(), file_name) or "kernel_require.rb" in file_name:
self.debugger.run_command(DebuggerModel.COMMAND_STEP_OVER)
except Empty:
Expand All @@ -227,7 +226,6 @@ def send_input(self, command):
self.process.stdin.flush()

def send_control_command(self, command):
print(command)
if not self.connected:
pass

Expand All @@ -238,7 +236,6 @@ def send_control_command(self, command):
self.log_message("Failed communicate with process ("+command+"): "+str(e))

def send_data_internal(self, command):
print(command)
if not self.connected:
return

Expand Down
1 change: 0 additions & 1 deletion toggle_breakpoint_command.py
Expand Up @@ -11,7 +11,6 @@ def run(self, edit):

class ReplaceContentCommand(sublime_plugin.TextCommand):
def run(self, edit, new_content, line_to_show, should_append):
print(self.view.name())
sublime.set_timeout(lambda view=self.view, new_content=new_content, line_to_show=line_to_show, should_append=should_append: ViewHelper.replace_content(view, new_content, line_to_show, should_append), 0)

class ToggleBreakpointCommand(sublime_plugin.TextCommand):
Expand Down

0 comments on commit fc20150

Please sign in to comment.