You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@whimsical.apache.org by ru...@apache.org on 2020/11/23 03:34:29 UTC

[whimsy] branch master updated: call super with no arguments

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 <ru...@intertwingly.net>
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