summaryrefslogtreecommitdiff
path: root/lib/irb
diff options
context:
space:
mode:
authordrbrain <drbrain@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-12-24 20:47:11 +0000
committerdrbrain <drbrain@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-12-24 20:47:11 +0000
commit2b402d824344b011fe95783000465098104cc2ab (patch)
tree1923bc394ded8cd78a288907b88f4696a2900de3 /lib/irb
parent479568e5c14c6e62e09286fdd7e10f54f9bdbd14 (diff)
Fix uninitialized variable warning in Net::HTTP
Remove unused method in IRB::OutputMethod. [ruby-talk:284582] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@14634 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/irb')
-rw-r--r--lib/irb/output-method.rb15
1 files changed, 0 insertions, 15 deletions
diff --git a/lib/irb/output-method.rb b/lib/irb/output-method.rb
index 3e4e3d442c..b8bd7fab81 100644
--- a/lib/irb/output-method.rb
+++ b/lib/irb/output-method.rb
@@ -45,21 +45,6 @@ module IRB
return format, opts if $1.size % 2 == 1
end
- def foo(format)
- pos = 0
- inspects = []
- format.scan(/%[#0\-+ ]?(\*(?=[^0-9])|\*[1-9][0-9]*\$|[1-9][0-9]*(?=[^0-9]))?(\.(\*(?=[^0-9])|\*[1-9][0-9]*\$|[1-9][0-9]*(?=[^0-9])))?(([1-9][0-9]*\$)*)([diouxXeEfgGcsb%])/) {|f, p, pp, pos, new_pos, c|
- puts [f, p, pp, pos, new_pos, c].join("!")
- pos = new_pos if new_pos
- if c == "I"
- inspects.push pos.to_i
- (f||"")+(p||"")+(pp||"")+(pos||"")+"s"
- else
- $&
- end
- }
- end
-
def puts(*objs)
for obj in objs
print(*obj)