You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@shiro.apache.org by bd...@apache.org on 2016/07/14 20:15:33 UTC

shiro git commit: Removed call to requireExplicitBindings() in ShiroModule, this is not backwards compatible.

Repository: shiro
Updated Branches:
  refs/heads/1.3.x c8bbb0912 -> 58a57fdf6


Removed call to requireExplicitBindings() in ShiroModule, this is not backwards compatible.

This went in as part of SHIRO-368


Project: http://git-wip-us.apache.org/repos/asf/shiro/repo
Commit: http://git-wip-us.apache.org/repos/asf/shiro/commit/58a57fdf
Tree: http://git-wip-us.apache.org/repos/asf/shiro/tree/58a57fdf
Diff: http://git-wip-us.apache.org/repos/asf/shiro/diff/58a57fdf

Branch: refs/heads/1.3.x
Commit: 58a57fdf643039cde796f223808f8d387a617a73
Parents: c8bbb09
Author: Brian Demers <bd...@apache.org>
Authored: Thu Jul 14 16:08:31 2016 -0400
Committer: Brian Demers <bd...@apache.org>
Committed: Thu Jul 14 16:08:31 2016 -0400

----------------------------------------------------------------------
 support/guice/src/main/java/org/apache/shiro/guice/ShiroModule.java | 1 -
 1 file changed, 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/shiro/blob/58a57fdf/support/guice/src/main/java/org/apache/shiro/guice/ShiroModule.java
----------------------------------------------------------------------
diff --git a/support/guice/src/main/java/org/apache/shiro/guice/ShiroModule.java b/support/guice/src/main/java/org/apache/shiro/guice/ShiroModule.java
index a2714ad..00c40a4 100644
--- a/support/guice/src/main/java/org/apache/shiro/guice/ShiroModule.java
+++ b/support/guice/src/main/java/org/apache/shiro/guice/ShiroModule.java
@@ -52,7 +52,6 @@ public abstract class ShiroModule extends PrivateModule implements Destroyable {
 
 	private Set<Destroyable> destroyables = Collections.newSetFromMap(new WeakHashMap<Destroyable, Boolean>());
     public void configure() {
-        this.binder().requireExplicitBindings();
         // setup security manager
         bindSecurityManager(bind(SecurityManager.class));
         bindSessionManager(bind(SessionManager.class));