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:37:54 UTC

[whimsy] branch master updated: remove super entirely

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 fd23229  remove super entirely
fd23229 is described below

commit fd2322936cbdfec9ea4f5b4e8381df531751b134
Author: Sam Ruby <ru...@intertwingly.net>
AuthorDate: Sun Nov 22 22:37:38 2020 -0500

    remove super entirely
---
 lib/whimsy/asf/ldap.rb | 1 -
 1 file changed, 1 deletion(-)

diff --git a/lib/whimsy/asf/ldap.rb b/lib/whimsy/asf/ldap.rb
index e4c93df..f25e41c 100644
--- a/lib/whimsy/asf/ldap.rb
+++ b/lib/whimsy/asf/ldap.rb
@@ -530,7 +530,6 @@ module ASF
   class LazyHash < Hash
     # capture an initializer to be called only if necessary.
     def initialize(&initializer)
-      super()
       @initializer = initializer
     end