You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@directory.apache.org by sm...@apache.org on 2015/05/24 22:54:49 UTC

directory-fortress-core git commit: FC-105 - Write to static field

Repository: directory-fortress-core
Updated Branches:
  refs/heads/master 0bbf80578 -> 4447a354c


FC-105 - Write to static field


Project: http://git-wip-us.apache.org/repos/asf/directory-fortress-core/repo
Commit: http://git-wip-us.apache.org/repos/asf/directory-fortress-core/commit/4447a354
Tree: http://git-wip-us.apache.org/repos/asf/directory-fortress-core/tree/4447a354
Diff: http://git-wip-us.apache.org/repos/asf/directory-fortress-core/diff/4447a354

Branch: refs/heads/master
Commit: 4447a354c6daa38880a11d70b8fbb8203d09794f
Parents: 0bbf805
Author: Shawn McKinney <sm...@apache.org>
Authored: Sun May 24 08:57:08 2015 -0500
Committer: Shawn McKinney <sm...@apache.org>
Committed: Sun May 24 08:57:08 2015 -0500

----------------------------------------------------------------------
 .../org/apache/directory/fortress/core/util/cache/CacheMgr.java    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/directory-fortress-core/blob/4447a354/src/main/java/org/apache/directory/fortress/core/util/cache/CacheMgr.java
----------------------------------------------------------------------
diff --git a/src/main/java/org/apache/directory/fortress/core/util/cache/CacheMgr.java b/src/main/java/org/apache/directory/fortress/core/util/cache/CacheMgr.java
index 6acc9ed..7a1c1ec 100644
--- a/src/main/java/org/apache/directory/fortress/core/util/cache/CacheMgr.java
+++ b/src/main/java/org/apache/directory/fortress/core/util/cache/CacheMgr.java
@@ -53,7 +53,7 @@ public class CacheMgr
     private CacheMgr( CacheManager cacheMangerImpl )
     {
         m_ehCacheImpl = cacheMangerImpl;
-        this.m_ftCacheImpl = this;
+        m_ftCacheImpl = this;
     }