From 33c4268b2e10769030bfe6c8eda2c085f1223c75 Mon Sep 17 00:00:00 2001 From: Dominik Stadler Date: Sun, 4 Jan 2015 10:23:24 +0000 Subject: [PATCH] Remove unnecessary casts git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1649310 13f79535-47bb-0310-9956-ffa450edef68 --- .../src/org/apache/poi/hslf/model/TextRun.java | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/src/scratchpad/src/org/apache/poi/hslf/model/TextRun.java b/src/scratchpad/src/org/apache/poi/hslf/model/TextRun.java index c5c876a827..755482f183 100644 --- a/src/scratchpad/src/org/apache/poi/hslf/model/TextRun.java +++ b/src/scratchpad/src/org/apache/poi/hslf/model/TextRun.java @@ -138,8 +138,8 @@ public final class TextRun // Build one for each run with the same style while(pos <= runRawText.length() && curP < pStyles.size() && curC < cStyles.size()) { // Get the Props to use - TextPropCollection pProps = (TextPropCollection)pStyles.get(curP); - TextPropCollection cProps = (TextPropCollection)cStyles.get(curC); + TextPropCollection pProps = pStyles.get(curP); + TextPropCollection cProps = cStyles.get(curC); int pLen = pProps.getCharactersCovered(); int cLen = cProps.getCharactersCovered(); @@ -291,15 +291,13 @@ public final class TextRun int pOverRun = _styleAtom.getParagraphTextLengthCovered() - oldSize; int cOverRun = _styleAtom.getCharacterTextLengthCovered() - oldSize; if(pOverRun > 0) { - TextPropCollection tpc = (TextPropCollection) - _styleAtom.getParagraphStyles().getLast(); + TextPropCollection tpc = _styleAtom.getParagraphStyles().getLast(); tpc.updateTextSize( tpc.getCharactersCovered() - pOverRun ); } if(cOverRun > 0) { - TextPropCollection tpc = (TextPropCollection) - _styleAtom.getCharacterStyles().getLast(); + TextPropCollection tpc = _styleAtom.getCharacterStyles().getLast(); tpc.updateTextSize( tpc.getCharactersCovered() - cOverRun ); @@ -540,8 +538,8 @@ public final class TextRun } // These are the only styles for now _rtRuns[0].supplyTextProps( - (TextPropCollection)_styleAtom.getParagraphStyles().get(0), - (TextPropCollection)_styleAtom.getCharacterStyles().get(0), + _styleAtom.getParagraphStyles().get(0), + _styleAtom.getCharacterStyles().get(0), false, false ); -- 2.39.5