[jboss-cvs] jbosside/netbeans/hibernate-console/src/org/hibernate/netbeans/console ...

Leon Chiver leonceeo at gmail.com
Tue Sep 19 15:23:29 EDT 2006


  User: leonceeo
  Date: 06/09/19 15:23:29

  Modified:    netbeans/hibernate-console/src/org/hibernate/netbeans/console 
                        SessionFactoryDescriptor.java
  Log:
  better progress message
  
  Revision  Changes    Path
  1.9       +1 -1      jbosside/netbeans/hibernate-console/src/org/hibernate/netbeans/console/SessionFactoryDescriptor.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: SessionFactoryDescriptor.java
  ===================================================================
  RCS file: /cvsroot/jboss/jbosside/netbeans/hibernate-console/src/org/hibernate/netbeans/console/SessionFactoryDescriptor.java,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -b -r1.8 -r1.9
  --- SessionFactoryDescriptor.java	18 Sep 2006 11:46:58 -0000	1.8
  +++ SessionFactoryDescriptor.java	19 Sep 2006 19:23:29 -0000	1.9
  @@ -471,7 +471,7 @@
           Configuration cfg = (Configuration) clazz.newInstance();
           cfg.setProperties(props);
           for (File f : getMappingFiles(ph)) {
  -            ph.progress("Adding mapping file " + f.getAbsolutePath());
  +            ph.progress("Adding mapping file " + f.getName() + " from " + f.getParentFile().getAbsolutePath());
               cfg.addFile(f);
           }
           return cfg;
  
  
  



More information about the jboss-cvs-commits mailing list