Details
-
Type:
Bug
-
Status:
Resolved
-
Priority:
Trivial
-
Resolution: Fixed
-
Affects Version/s: JRuby 1.6
-
Fix Version/s: JRuby 1.7.0.pre1
-
Component/s: Core Classes/Modules, Ruby 1.9.2
-
Labels:None
-
Number of attachments :
Description
Note that 1.8 doesn't even return an enumerator.
~/projects/jruby ➔ jruby --1.9 -e "ary = []; p ary.map; p ary.collect" #<Enumerator: []:collect> #<Enumerator: []:collect> ~/projects/jruby ➔ ruby1.9 -e "ary = []; p ary.map; p ary.collect" #<Enumerator: []:map> #<Enumerator: []:collect>
Fixed in 20c3217.