Code clean-up. No functional change.
authormarkt <markt@13f79535-47bb-0310-9956-ffa450edef68>
Sat, 3 Mar 2007 16:18:50 +0000 (16:18 +0000)
committermarkt <markt@13f79535-47bb-0310-9956-ffa450edef68>
Sat, 3 Mar 2007 16:18:50 +0000 (16:18 +0000)
git-svn-id: https://svn.apache.org/repos/asf/tomcat/tc6.0.x/trunk@514181 13f79535-47bb-0310-9956-ffa450edef68

java/org/apache/catalina/realm/MemoryRealm.java

index 88b4919..c9de672 100644 (file)
@@ -24,7 +24,6 @@ import java.io.File;
 import java.util.ArrayList;
 import java.util.HashMap;
 import java.util.Map;
-import org.apache.catalina.Container;
 import org.apache.catalina.LifecycleException;
 import org.apache.catalina.util.StringManager;
 import org.apache.juli.logging.Log;
@@ -54,12 +53,6 @@ public class MemoryRealm  extends RealmBase {
 
 
     /**
-     * The Container with which this Realm is associated.
-     */
-    private Container container = null;
-
-
-    /**
      * The Digester we will use to process in-memory database files.
      */
     private static Digester digester = null;
@@ -99,12 +92,6 @@ public class MemoryRealm  extends RealmBase {
         StringManager.getManager(Constants.Package);
 
 
-    /**
-     * Has this component been started?
-     */
-    private boolean started = false;
-
-
     // ------------------------------------------------------------- Properties