- Timestamp:
- 07/14/10 08:41:22 (23 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/docx4j/src/main/java/org/docx4j/openpackaging/io/SaveToZipFile.java
r1102 r1162 70 70 * This HashMap is intended to prevent loops. 71 71 */ 72 private HashMap<String, String> handled = new HashMap<String, String>();72 private HashMap<String, String> handled; 73 73 74 74 /* Save a Package as a Zip file in the file system */ 75 75 public boolean save(String filepath) throws Docx4JException { 76 77 76 log.info("Saving to" + filepath ); 78 77 try { … … 87 86 /* Save a Package as a Zip file in the file system */ 88 87 public boolean save(java.io.File docxFile) throws Docx4JException { 89 90 88 log.info("Saving to" + docxFile ); 91 89 try { … … 100 98 /* Save a Package as a Zip file in the outputstream provided */ 101 99 public boolean save(OutputStream realOS) throws Docx4JException { 102 100 handled = new HashMap<String, String>(); 103 101 try { 104 102
Note: See TracChangeset
for help on using the changeset viewer.
