]> source.dussan.org Git - poi.git/commitdiff
HWPFDocument: minor cleanup
authorMaxim Valyanskiy <maxcom@apache.org>
Wed, 7 Jul 2010 10:42:23 +0000 (10:42 +0000)
committerMaxim Valyanskiy <maxcom@apache.org>
Wed, 7 Jul 2010 10:42:23 +0000 (10:42 +0000)
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@961343 13f79535-47bb-0310-9956-ffa450edef68

src/scratchpad/src/org/apache/poi/hwpf/HWPFDocument.java

index 877075158a5fd84cc3e9521df97f40b44a648280..86b0ef2bf5722530b01049c0bc66c4209aed29f6 100644 (file)
@@ -280,8 +280,7 @@ public final class HWPFDocument extends HWPFDocumentCore
    */
   public Range getOverallRange() {
          // hack to get the ending cp of the document, Have to revisit this.
-         java.util.List text = _tpt.getTextPieces();
-         PropertyNode p = (PropertyNode)text.get(text.size() - 1);
+      PropertyNode p =  _tpt.getTextPieces().get(_tpt.getTextPieces().size() - 1);
 
       return new Range(0, p.getEnd(), this);
   }