dion        2002/06/21 21:24:44

  Modified:    src/java/org/apache/maven/build PropertyResolver.java
  Log:
  Fix style violations
  
  Revision  Changes    Path
  1.10      +5 -5      
jakarta-turbine-maven/src/java/org/apache/maven/build/PropertyResolver.java
  
  Index: PropertyResolver.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-turbine-maven/src/java/org/apache/maven/build/PropertyResolver.java,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -u -r1.9 -r1.10
  --- PropertyResolver.java     17 Jun 2002 15:53:58 -0000      1.9
  +++ PropertyResolver.java     22 Jun 2002 04:24:44 -0000      1.10
  @@ -82,7 +82,7 @@
   public class PropertyResolver
   {
       /** used to log output */
  -    private static final Log log = LogFactory.getLog(PropertyResolver.class);
  +    private static final Log LOG = LogFactory.getLog(PropertyResolver.class);
       /** use a jelly/ant combo to resolve stuff */
       private JellyAntProject resolver = new JellyAntProject();
       
  @@ -134,11 +134,11 @@
       public void addProperties(Properties properties)
       {
           String key = null;
  -        log.debug("Adding: " + properties);
  +        LOG.debug("Adding: " + properties);
           for (Enumeration e = properties.propertyNames(); e.hasMoreElements();)
           {
               key = (String) e.nextElement();
  -            log.debug("setting key: " + key);
  +            LOG.debug("setting key: " + key);
               setProperty(key,  properties.getProperty(key));
           }
       }
  @@ -163,7 +163,7 @@
        */
       public void setProperty(String name, Object value)
       {
  -        log.debug("setting " + name + " = '" + value + "'");
  +        LOG.debug("setting " + name + " = '" + value + "'");
           resolver.getContext().setVariable(name, value);
       }
   }
  
  
  

--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to