Ignore:
Timestamp:
02/08/11 12:33:06 (16 months ago)
Author:
jharrop
Message:

Change System.out.println to log.debug.

Location:
trunk/docx4j/src/main/java/org/docx4j/openpackaging/io
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/docx4j/src/main/java/org/docx4j/openpackaging/io/Load.java

    r1385 r1421  
    178178                                                Unmarshaller u = Context.jc.createUnmarshaller(); 
    179179                                                Object o = u.unmarshal( is );                                            
    180                                                 System.out.println(o.getClass().getName()); 
     180                                                log.debug(o.getClass().getName()); 
    181181                                                 
    182182                                                PartName name = part.getPartName(); 
  • trunk/docx4j/src/main/java/org/docx4j/openpackaging/io/LoadFromZipFile.java

    r1309 r1421  
    490490                                                Unmarshaller u = Context.jc.createUnmarshaller(); 
    491491                                                Object o = u.unmarshal( is );                                            
    492                                                 System.out.println(o.getClass().getName()); 
     492                                                log.debug(o.getClass().getName()); 
    493493                                                 
    494494                                                PartName name = part.getPartName(); 
  • trunk/docx4j/src/main/java/org/docx4j/openpackaging/io/LoadFromZipNG.java

    r1414 r1421  
    548548                                                Unmarshaller u = Context.jc.createUnmarshaller(); 
    549549                                                Object o = u.unmarshal( is );                                            
    550                                                 System.out.println(o.getClass().getName()); 
     550                                                log.debug(o.getClass().getName()); 
    551551                                                 
    552552                                                PartName name = part.getPartName(); 
Note: See TracChangeset for help on using the changeset viewer.