[LOGBack-dev] svn commit: r298 - logback/core/trunk/src/main/java/ch/qos/logback/core/joran/action

noreply.seb at qos.ch noreply.seb at qos.ch
Tue Jul 25 15:05:53 CEST 2006


Author: seb
Date: Tue Jul 25 15:05:52 2006
New Revision: 298

Modified:
   logback/core/trunk/src/main/java/ch/qos/logback/core/joran/action/NestedComponentIA.java
Log:
Type Safety

Modified: logback/core/trunk/src/main/java/ch/qos/logback/core/joran/action/NestedComponentIA.java
==============================================================================
--- logback/core/trunk/src/main/java/ch/qos/logback/core/joran/action/NestedComponentIA.java	(original)
+++ logback/core/trunk/src/main/java/ch/qos/logback/core/joran/action/NestedComponentIA.java	Tue Jul 25 15:05:52 2006
@@ -41,7 +41,7 @@
   // action is applicable) and pop it in the end() method.
   // The XML well-formedness property will guarantee that a push will eventually
   // be followed by the corresponding pop.
-  Stack actionDataStack = new Stack();
+  Stack<ImplicitActionData> actionDataStack = new Stack<ImplicitActionData>();
 
   public boolean isApplicable(
     Pattern pattern, Attributes attributes, ExecutionContext ec) {



More information about the logback-dev mailing list