]> source.dussan.org Git - poi.git/commitdiff
sorting of PAPX is not required, it will be replaced with full rewrite later
authorSergey Vladimirov <sergey@apache.org>
Mon, 11 Jul 2011 18:39:06 +0000 (18:39 +0000)
committerSergey Vladimirov <sergey@apache.org>
Mon, 11 Jul 2011 18:39:06 +0000 (18:39 +0000)
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1145280 13f79535-47bb-0310-9956-ffa450edef68

src/scratchpad/src/org/apache/poi/hwpf/model/PAPBinTable.java

index db55fea4183817083b327422858313dd6fe7bbcd..17d2c71da72b17801da20597b8bb3119f58c36ba 100644 (file)
@@ -20,7 +20,6 @@ package org.apache.poi.hwpf.model;
 import java.io.IOException;
 import java.io.OutputStream;
 import java.util.ArrayList;
-import java.util.Collections;
 
 import org.apache.poi.hwpf.model.io.HWPFFileSystem;
 import org.apache.poi.hwpf.model.io.HWPFOutputStream;
@@ -87,7 +86,7 @@ public class PAPBinTable
            _paragraphs.add(papx);
       }
     }
-    Collections.sort( _paragraphs, PropertyNode.StartComparator.instance );
+
     _dataStream = dataStream;
   }