
Author: seb Date: Tue Jul 25 15:06:25 2006 New Revision: 299 Modified: logback/core/trunk/src/main/java/ch/qos/logback/core/joran/action/NestedSimplePropertyIA.java Log: Type Safety Modified: logback/core/trunk/src/main/java/ch/qos/logback/core/joran/action/NestedSimplePropertyIA.java ============================================================================== --- logback/core/trunk/src/main/java/ch/qos/logback/core/joran/action/NestedSimplePropertyIA.java (original) +++ logback/core/trunk/src/main/java/ch/qos/logback/core/joran/action/NestedSimplePropertyIA.java Tue Jul 25 15:06:25 2006 @@ -38,7 +38,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) {