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/05/09 12:17:25 UTC

cvs commit: db-ojb/src/java/org/apache/ojb/broker PBKey.java

arminw      2003/05/09 03:17:25

  Modified:    src/java/org/apache/ojb/broker PBKey.java
  Log:
  use 'jcdAlias' key in toString() method
  
  Revision  Changes    Path
  1.6       +2 -2      db-ojb/src/java/org/apache/ojb/broker/PBKey.java
  
  Index: PBKey.java
  ===================================================================
  RCS file: /home/cvs/db-ojb/src/java/org/apache/ojb/broker/PBKey.java,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- PBKey.java	24 Dec 2002 13:31:58 -0000	1.5
  +++ PBKey.java	9 May 2003 10:17:24 -0000	1.6
  @@ -71,7 +71,7 @@
   
       public String toString()
       {
  -        return this.getClass().getName() + ": repository="+jcdAlias+", user="+user+
  +        return this.getClass().getName() + ": jcdAlias="+jcdAlias+", user="+user+
                   (user != null ? ", password=*****" : ", password="+password);
       }