summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authortadf <tadf@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2006-07-02 14:32:49 +0000
committertadf <tadf@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2006-07-02 14:32:49 +0000
commitabd574a80af2627ed13ee7a60de451402fe2ffe4 (patch)
tree9313263c1664ffca1193cabcb9e75cac8949a82a
parentd55ece2791333b0f407e973c0515bd1b880b4fbd (diff)
downloadruby-abd574a80af2627ed13ee7a60de451402fe2ffe4.tar.gz
ruby-abd574a80af2627ed13ee7a60de451402fe2ffe4.tar.xz
ruby-abd574a80af2627ed13ee7a60de451402fe2ffe4.zip
cancelled r1.25
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@10453 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--lib/date.rb3
1 files changed, 0 insertions, 3 deletions
diff --git a/lib/date.rb b/lib/date.rb
index 722ecd154..6037d911b 100644
--- a/lib/date.rb
+++ b/lib/date.rb
@@ -806,15 +806,12 @@ class Date
# Get the minute of this date.
def min() time[1] end
- alias :minute :min
# Get the second of this date.
def sec() time[2] end
- alias :second :sec
# Get the fraction-of-a-second of this date.
def sec_fraction() time[3] end
- alias :second_fraction :sec_fraction
private :hour, :min, :sec, :sec_fraction