This is an automated email from the ASF dual-hosted git repository.
rubys pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/whimsy.git
The following commit(s) were added to refs/heads/master by this push:
new f004ea8 call super with no arguments
f004ea8 is described below
commit f004ea869276495f9095317061b5325f7b676b3f
Author: Sam Ruby <[email protected]>
AuthorDate: Sun Nov 22 22:30:14 2020 -0500
call super with no arguments
---
lib/whimsy/asf/ldap.rb | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/lib/whimsy/asf/ldap.rb b/lib/whimsy/asf/ldap.rb
index ca10493..e4c93df 100644
--- a/lib/whimsy/asf/ldap.rb
+++ b/lib/whimsy/asf/ldap.rb
@@ -530,7 +530,7 @@ module ASF
class LazyHash < Hash
# capture an initializer to be called only if necessary.
def initialize(&initializer)
- super
+ super()
@initializer = initializer
end