Skip to content

Commit 0cf00b9

Browse files
committed
Remove commented code
1 parent a6353a5 commit 0cf00b9

File tree

1 file changed

+0
-8
lines changed

1 file changed

+0
-8
lines changed

SublimeRubyCoverage.py

-8
Original file line numberDiff line numberDiff line change
@@ -62,14 +62,6 @@ def run(self, edit):
6262
for current_line, line in enumerate(coverage_file):
6363
if line.strip() != '1':
6464
region = view.full_line(view.text_point(current_line, 0))
65-
# join contiguous regions together
66-
# if len(outlines) > 0:
67-
# prev_region = outlines.pop()
68-
# if region.begin() == prev_region.end():
69-
# region = sublime.Region(prev_region.begin(), region.end())
70-
# else:
71-
# outlines.append(prev_region)
72-
7365
outlines.append(region)
7466
except IOError as e:
7567
# highlight the entire view

0 commit comments

Comments
 (0)