argument-error

Rails active record object causes error when i try to access any attribute

I have code like: @notifications = Notification.find_all_by_user_id(@user.id, :order=>'deliver_by DESC', :conditions=>"deliver_by >= '#{Date.today.to_s(:db)}'") logger.info @upcoming_reminders[0].inspect logger.info @upcoming_reminders[0].class logger.info @upcoming_reminders[0].id logger.info "--------------------------...

JRuby: how to call a Java variadic function without optional arguments

I have a function with a signature similar to String.format(String, Object...). I want to call this function from JRuby without the last parameters (since it is optional), but my code throws an ArgumentError (wrong # of arguments(1 for 2)) Is there a way to call this function with only 1 argument just like I would do in Java? ...