[jboss-cvs] jboss-seam/src/gen/org/jboss/seam/tool ...

Gavin King gavin.king at jboss.com
Thu Nov 2 19:53:48 EST 2006


  User: gavin   
  Date: 06/11/02 19:53:48

  Modified:    src/gen/org/jboss/seam/tool   BuildPropertiesBean.java
                        SeamGenCommandLine.java
  Log:
  improvements, fixes
  
  Revision  Changes    Path
  1.3       +3 -3      jboss-seam/src/gen/org/jboss/seam/tool/BuildPropertiesBean.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: BuildPropertiesBean.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/src/gen/org/jboss/seam/tool/BuildPropertiesBean.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -b -r1.2 -r1.3
  --- BuildPropertiesBean.java	2 Nov 2006 22:34:20 -0000	1.2
  +++ BuildPropertiesBean.java	3 Nov 2006 00:53:48 -0000	1.3
  @@ -48,9 +48,9 @@
   		this.modelDir = args[4].replace(".", "/");
   		this.testDir = args[5].replace(".", "/");
   		this.testPackage = args[5];
  -		this.mdbDir = args[7].replace(".", "/");
  -		this.mdbPackage = args[7];
  -		this.wtp = args[8];
  +		this.mdbDir = args[6].replace(".", "/");
  +		this.mdbPackage = args[6];
  +		this.wtp = args[7];
   	}
      
      private String fixPath(String aPath)
  
  
  
  1.4       +1 -1      jboss-seam/src/gen/org/jboss/seam/tool/SeamGenCommandLine.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: SeamGenCommandLine.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/src/gen/org/jboss/seam/tool/SeamGenCommandLine.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -b -r1.3 -r1.4
  --- SeamGenCommandLine.java	2 Nov 2006 23:17:33 -0000	1.3
  +++ SeamGenCommandLine.java	3 Nov 2006 00:53:48 -0000	1.4
  @@ -27,7 +27,7 @@
   
   		if (args[0].equals("set-properties")) {
   			// check to make sure we have right # of arguments
  -			if (args.length == 9) {
  +			if (args.length == 8) {
   				BuildPropertiesBean projectProps = new BuildPropertiesBean(args);
   				BuildPropertiesGenerator propsGen = new BuildPropertiesGenerator(
   						projectProps);
  
  
  



More information about the jboss-cvs-commits mailing list