summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2011-12-04 13:35:50 +0000
committerakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2011-12-04 13:35:50 +0000
commit7b18746587b25ab1438be4b20ea7d59e99db84f1 (patch)
tree46940da54a745b519f23b9424958718f6d9705c1
parent483fd7485ba07a03426900da7d8397c0b0d99af7 (diff)
* lib/tempfile.rb (Tempfile::MAX_TRY): remove unused constant.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@33941 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog4
-rw-r--r--lib/tempfile.rb1
2 files changed, 4 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 2fbf13493e..19741886ae 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+Sun Dec 4 22:34:43 2011 Tanaka Akira <akr@fsij.org>
+
+ * lib/tempfile.rb (Tempfile::MAX_TRY): remove unused constant.
+
Sun Dec 4 12:11:28 2011 Kazuki Tsujimoto <kazuki@callcc.net>
* lib/pp.rb: fix rdoc.
diff --git a/lib/tempfile.rb b/lib/tempfile.rb
index 22401b030c..ba2a437f79 100644
--- a/lib/tempfile.rb
+++ b/lib/tempfile.rb
@@ -79,7 +79,6 @@ require 'thread'
# same Tempfile object from multiple threads then you should protect it with a
# mutex.
class Tempfile < DelegateClass(File)
- MAX_TRY = 10 # :nodoc:
include Dir::Tmpname
# call-seq: