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 55cc6ca add back in super, explicitly passing in no block
55cc6ca is described below
commit 55cc6cae9f60a907a301eefbe20134970e35f7a1
Author: Sam Ruby <[email protected]>
AuthorDate: Sun Nov 22 22:43:22 2020 -0500
add back in super, explicitly passing in no block
---
lib/whimsy/asf/ldap.rb | 1 +
1 file changed, 1 insertion(+)
diff --git a/lib/whimsy/asf/ldap.rb b/lib/whimsy/asf/ldap.rb
index f25e41c..cac792a 100644
--- a/lib/whimsy/asf/ldap.rb
+++ b/lib/whimsy/asf/ldap.rb
@@ -530,6 +530,7 @@ module ASF
class LazyHash < Hash
# capture an initializer to be called only if necessary.
def initialize(&initializer)
+ super() {}
@initializer = initializer
end