[jboss-cvs] jboss-dependency/src/main/org/jboss/dependency/plugins ...

Adrian Brock adrian.brock at jboss.com
Fri Jul 14 07:31:19 EDT 2006


  User: adrian  
  Date: 06/07/14 07:31:19

  Modified:    src/main/org/jboss/dependency/plugins 
                        AbstractControllerContextActions.java
  Log:
  Missed a bit of generification.
  
  Revision  Changes    Path
  1.3       +4 -4      jboss-dependency/src/main/org/jboss/dependency/plugins/AbstractControllerContextActions.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: AbstractControllerContextActions.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-dependency/src/main/org/jboss/dependency/plugins/AbstractControllerContextActions.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -b -r1.2 -r1.3
  --- AbstractControllerContextActions.java	30 Oct 2005 00:04:34 -0000	1.2
  +++ AbstractControllerContextActions.java	14 Jul 2006 11:31:19 -0000	1.3
  @@ -32,14 +32,14 @@
    * ControllerContextActions.
    * 
    * @author <a href="adrian at jboss.com">Adrian Brock</a>
  - * @version $Revision: 1.2 $
  + * @version $Revision: 1.3 $
    */
   public class AbstractControllerContextActions implements ControllerContextActions
   {
      /** The actions Map<ControllerState, ControllerContextAction> */
  -   private Map actions;
  +   private Map<ControllerState, ControllerContextAction> actions;
      
  -   public AbstractControllerContextActions(Map actions)
  +   public AbstractControllerContextActions(Map<ControllerState, ControllerContextAction> actions)
      {
         this.actions = actions;
      }
  @@ -67,6 +67,6 @@
       */
      protected ControllerContextAction getAction(ControllerContext context, ControllerState state)
      {
  -      return (ControllerContextAction) actions.get(state);
  +      return actions.get(state);
      }
   }
  
  
  



More information about the jboss-cvs-commits mailing list