donaldp 2003/03/19 04:50:03
Modified: fortress/src/java/org/apache/avalon/fortress/impl/handler
ComponentFactory.java
Log:
Remove unused field
Revision Changes Path
1.10 +4 -10
avalon-excalibur/fortress/src/java/org/apache/avalon/fortress/impl/handler/ComponentFactory.java
Index: ComponentFactory.java
===================================================================
RCS file:
/home/cvs/avalon-excalibur/fortress/src/java/org/apache/avalon/fortress/impl/handler/ComponentFactory.java,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- ComponentFactory.java 7 Mar 2003 20:21:26 -0000 1.9
+++ ComponentFactory.java 19 Mar 2003 12:50:03 -0000 1.10
@@ -80,12 +80,6 @@
private CounterInstrument m_newInstance;
private CounterInstrument m_dispose;
- /**
- * Name of the Instrumentable. Maps to the id of the component in the
- * configuration.
- */
- private String m_instrumentableName;
-
/** The class which this <code>ComponentFactory</code>
* should create.
*/
@@ -144,9 +138,9 @@
m_newInstance = new CounterInstrument( "creates" );
m_dispose = new CounterInstrument( "destroys" );
-
+
setInstrumentableName("factory");
-
+
addInstrument(m_newInstance);
addInstrument(m_dispose);
}
@@ -174,7 +168,7 @@
}
ContainerUtil.enableLogging(component, m_componentLogger);
-
+
if( component instanceof Loggable )
{
final String message = "WARNING: " + m_componentClass.getName() +
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]