fix: remove super call causing error
The super call in the EnumerationsController.class_eval block is failing with an error in ArchivesSpace 3.4.1:
org.jruby.rack.RackInitializationException: implicit argument passing of super from method defined by define_method() is not supported. Specify all arguments explicitly.
It seems like this super call would have no effect in the past when it did work, as unless I'm misunderstanding the code, there's no overridden method to invoke — we're passing a block to the class_eval method.