summaryrefslogtreecommitdiff
path: root/lib/highline.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/highline.rb')
-rwxr-xr-xlib/highline.rb9
1 files changed, 1 insertions, 8 deletions
diff --git a/lib/highline.rb b/lib/highline.rb
index 09dd904..2fd93db 100755
--- a/lib/highline.rb
+++ b/lib/highline.rb
@@ -341,15 +341,8 @@ class HighLine
# Remove color codes from a string.
# @param string [String] to be decolorized
# @return [String] without the ANSI escape sequence (colors)
- def self.uncolor(string)
- Style.uncolor(string)
- end
-
- # (see .uncolor)
- # Convenience instance method. It delegates to the class method.
-
def uncolor(string)
- self.class.uncolor(string)
+ Style.uncolor(string)
end
# Renders a list of itens using a {ListRenderer}