Class: Java::JavaUtil::TreeSet

Inherits:
Object
  • Object
show all
Defined in:
lib/caruby/import/java.rb

Instance Method Summary collapse

Instance Method Details

#firstObject

Fixes the jRuby #first to return nil on an empty set rather than raise a Java exception.



156
157
158
# File 'lib/caruby/import/java.rb', line 156

def first
  empty? ? nil : base__first
end