summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-10-05 09:53:17 +0000
committerakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-10-05 09:53:17 +0000
commita64f397403c03d9d613294861c3c9b4df05dd454 (patch)
treebc8b7c7d71d7addd22a7e0b0920461b7094a63b6
parentf09149cab5ae59d40e61787ba3cbfd95c584baab (diff)
* lib/open-uri.rb: remove debug code introduced by previous change.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@19688 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog4
-rw-r--r--lib/open-uri.rb1
2 files changed, 4 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index ad8c0dde7a..1c95911731 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+Sun Oct 5 18:51:50 2008 Tanaka Akira <akr@fsij.org>
+
+ * lib/open-uri.rb: remove debug code introduced by previous change.
+
Sun Oct 5 17:49:35 2008 NARUSE, Yui <naruse@ruby-lang.org>
* lib/open-uri.rb (OpenURI.open_uri): set encoding to strio.
diff --git a/lib/open-uri.rb b/lib/open-uri.rb
index 03f5e6de4e..2a6c544fe6 100644
--- a/lib/open-uri.rb
+++ b/lib/open-uri.rb
@@ -145,7 +145,6 @@ module OpenURI
io = open_loop(uri, options)
io.set_encoding(encoding) if encoding
- p [encoding, io.external_encoding]
if block_given?
begin
yield io