From: Karen Lease Date: Fri, 10 Nov 2000 22:51:12 +0000 (+0000) Subject: Remove unnecessary casts to specific property classes X-Git-Tag: pre-columns~106 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=35f8fb432198583f650fc21369287d4ef3554f39;p=xmlgraphics-fop.git Remove unnecessary casts to specific property classes git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@193780 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/src/org/apache/fop/fo/pagination/PageSequence.java b/src/org/apache/fop/fo/pagination/PageSequence.java index 381d52d9f..70930813d 100644 --- a/src/org/apache/fop/fo/pagination/PageSequence.java +++ b/src/org/apache/fop/fo/pagination/PageSequence.java @@ -122,9 +122,6 @@ public class PageSequence extends FObj layoutMasterSet = root.getLayoutMasterSet(); thisIsFirstPage=true; // we are now on the first page of the page sequence - /* - InitialPageNumber ipn = (InitialPageNumber) this.properties.get("initial-page-number"); - */ String ipnValue= this.properties.get("initial-page-number").getString(); if ( ipnValue.equals("auto") ) @@ -153,7 +150,6 @@ public class PageSequence extends FObj } } - // masterName = ((MasterName) this.properties.get("master-name")).getString(); masterName = this.properties.get("master-name").getString(); }