You are viewing a plain text version of this content. The canonical link for it is here.
Posted to ojb-dev@db.apache.org by ar...@apache.org on 2003/09/03 20:50:55 UTC

cvs commit: db-ojb/src/java/org/apache/ojb/broker/util/configuration/impl ConfigurationAbstractImpl.java

arminw      2003/09/03 11:50:55

  Modified:    src/java/org/apache/ojb/broker/util/configuration/impl
                        ConfigurationAbstractImpl.java
  Log:
  fix NPE in log message
  
  Revision  Changes    Path
  1.9       +4 -4      db-ojb/src/java/org/apache/ojb/broker/util/configuration/impl/ConfigurationAbstractImpl.java
  
  Index: ConfigurationAbstractImpl.java
  ===================================================================
  RCS file: /home/cvs/db-ojb/src/java/org/apache/ojb/broker/util/configuration/impl/ConfigurationAbstractImpl.java,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- ConfigurationAbstractImpl.java	29 Aug 2003 09:35:43 -0000	1.8
  +++ ConfigurationAbstractImpl.java	3 Sep 2003 18:50:55 -0000	1.9
  @@ -362,7 +362,7 @@
                       + "\" is illegal for key \""
                       + key
                       + "\" (should be a class, using default value "
  -                    + defaultValue.getName()
  +                    + defaultValue
                       + ")");
           }
   
  @@ -390,10 +390,10 @@
                           + ", which is a requirement for the key \""
                           + key
                           + "\". Using default class "
  -                        + defaultValue.getName());
  +                        + defaultValue);
                   clazz = defaultValue;
               }
  -            
  +
           }
   
           return clazz;
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: ojb-dev-unsubscribe@db.apache.org
For additional commands, e-mail: ojb-dev-help@db.apache.org