From: Sergey Vladimirov Date: Mon, 11 Jul 2011 18:39:06 +0000 (+0000) Subject: sorting of PAPX is not required, it will be replaced with full rewrite later X-Git-Tag: REL_3_8_BETA4~212 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=4812be0d1a84f76f846cada8419beea000be3cc8;p=poi.git sorting of PAPX is not required, it will be replaced with full rewrite later git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1145280 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/src/scratchpad/src/org/apache/poi/hwpf/model/PAPBinTable.java b/src/scratchpad/src/org/apache/poi/hwpf/model/PAPBinTable.java index db55fea418..17d2c71da7 100644 --- a/src/scratchpad/src/org/apache/poi/hwpf/model/PAPBinTable.java +++ b/src/scratchpad/src/org/apache/poi/hwpf/model/PAPBinTable.java @@ -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; }