[jboss-cvs] jboss-seam/src/pdf/org/jboss/seam/pdf/ui ...

Norman Richards norman.richards at jboss.com
Sat Jan 20 15:10:55 EST 2007


  User: nrichards
  Date: 07/01/20 15:10:55

  Modified:    src/pdf/org/jboss/seam/pdf/ui  UIDocument.java
  Log:
  you didn't see those printlns
  
  Revision  Changes    Path
  1.10      +1 -6      jboss-seam/src/pdf/org/jboss/seam/pdf/ui/UIDocument.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: UIDocument.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/src/pdf/org/jboss/seam/pdf/ui/UIDocument.java,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -u -b -r1.9 -r1.10
  --- UIDocument.java	20 Jan 2007 20:04:30 -0000	1.9
  +++ UIDocument.java	20 Jan 2007 20:10:55 -0000	1.10
  @@ -92,10 +92,7 @@
               document.setPageSize(ITextUtils.pageSizeValue(pageSize));
           }
     
  -        System.out.println("page size was " + document.getPageSize().width() +
  -                "x" + document.getPageSize().height());
           orientation = (String) valueBinding(context, "orientation", orientation);  
  -        System.out.println("orientation: " + orientation);
           if (orientation != null) {
               if (orientation.equalsIgnoreCase("portrait")) {
                   // do nothing
  @@ -108,8 +105,6 @@
                   throw new RuntimeException("orientation value " + orientation + "unknown");
               }
           }
  -        System.out.println("page size is " + document.getPageSize().width() +
  -                "x" + document.getPageSize().height());
           
           margins = (String) valueBinding(context, "margins", margins);
           if (margins != null) {
  
  
  



More information about the jboss-cvs-commits mailing list