]> source.dussan.org Git - poi.git/commitdiff
[github-366] remove unnecessary local vars. Thanks to Arturo Bernal. This closes...
authorPJ Fanning <fanningpj@apache.org>
Sat, 6 Aug 2022 21:06:50 +0000 (21:06 +0000)
committerPJ Fanning <fanningpj@apache.org>
Sat, 6 Aug 2022 21:06:50 +0000 (21:06 +0000)
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1903257 13f79535-47bb-0310-9956-ffa450edef68

poi-ooxml/src/main/java/org/apache/poi/xddf/usermodel/chart/XDDFChartAxis.java
poi-ooxml/src/main/java/org/apache/poi/xwpf/usermodel/XWPFHeaderFooter.java
poi-ooxml/src/main/java/org/apache/poi/xwpf/usermodel/XWPFTableCell.java
poi-scratchpad/src/main/java/org/apache/poi/hsmf/MAPIMessage.java
poi-scratchpad/src/main/java/org/apache/poi/hwpf/model/types/GrfhicAbstractType.java
poi/src/main/java/org/apache/poi/ss/formula/functions/Areas.java

index c04e066ed216b22cd01197c68f63d445f5f08894..b565987f845f508dd7c2e8c48c457d16567e6512 100644 (file)
@@ -408,11 +408,10 @@ public abstract class XDDFChartAxis implements HasShapeProperties {
     }
 
     protected long getNextAxId(CTPlotArea plotArea) {
-        long totalAxisCount = 0L
+        return 0L
                 + plotArea.sizeOfValAxArray()
                 + plotArea.sizeOfCatAxArray()
                 + plotArea.sizeOfDateAxArray()
                 + plotArea.sizeOfSerAxArray();
-        return totalAxisCount;
     }
 }
index 12e58207f0940570b2483f3c13b69cf42d472be8..4c7d4bdf563f4f6c7e450090606f5ddf1be9031b 100644 (file)
@@ -492,8 +492,7 @@ public abstract class XWPFHeaderFooter extends POIXMLDocumentPart implements IBo
     private boolean isCursorInHdrF(XmlCursor cursor) {
         try (XmlCursor verify = cursor.newCursor()) {
             verify.toParent();
-            boolean result = (verify.getObject() == this.headerFooter);
-            return result;
+            return (verify.getObject() == this.headerFooter);
         }
     }
 
index efe489ef9c10a195b59adc11c458feff0b6a2ef7..47ccb465c7026d57a29af0732ad85baf940e19dc 100644 (file)
@@ -336,8 +336,7 @@ public class XWPFTableCell implements IBody, ICell {
     private boolean isCursorInTableCell(XmlCursor cursor) {
         try (XmlCursor verify = cursor.newCursor()) {
             verify.toParent();
-            boolean result = (verify.getObject() == this.ctTc);
-            return result;
+            return (verify.getObject() == this.ctTc);
         }
     }
 
index 23c9bd770d47855977ca46a8e4c521debeab392c..643463e191eba397f30af2b673d864bbb959008e 100644 (file)
@@ -447,8 +447,7 @@ public class MAPIMessage extends POIReadOnlyDocument {
         if (val != null && !val.isEmpty()) {
             int codepage = ((LongPropertyValue) val.get(0)).getValue();
             try {
-                String encoding = CodePageUtil.codepageToEncoding(codepage, true);
-                generalcodepage = encoding;
+                generalcodepage = CodePageUtil.codepageToEncoding(codepage, true);
             } catch (UnsupportedEncodingException e) {
                 LOG.atWarn().log("Invalid codepage ID {} set for the message via {}, ignoring", box(codepage), MAPIProperty.MESSAGE_CODEPAGE);
             }
@@ -463,8 +462,7 @@ public class MAPIMessage extends POIReadOnlyDocument {
                 int codepage = LocaleUtil.getDefaultCodePageFromLCID(lcid);
                 try {
                     if (codepage != 0) {
-                        String encoding = CodePageUtil.codepageToEncoding(codepage, true);
-                        generalcodepage = encoding;
+                        generalcodepage = CodePageUtil.codepageToEncoding(codepage, true);
                     }
                 } catch (UnsupportedEncodingException e) {
                     LOG.atWarn().log("Invalid codepage ID {}from locale ID{} set for the message via {}, ignoring", box(codepage), box(lcid), MAPIProperty.MESSAGE_LOCALE_ID);
@@ -482,8 +480,7 @@ public class MAPIMessage extends POIReadOnlyDocument {
                         if (header.toLowerCase(LocaleUtil.getUserLocale()).startsWith("content-type")) {
                             Matcher m = GUESS_7_BIT_ENCODING_PATTERN.matcher(header);
                             if (m.matches()) {
-                                String encoding = m.group(1);
-                                generalcodepage = encoding;
+                                generalcodepage = m.group(1);
                             }
                         }
                     }
index e968f971fcf8bfa7e37451e536902c29b20be431..8304443080b60bed10d2998a4ec5573684520344 100644 (file)
@@ -91,7 +91,7 @@ public abstract class GrfhicAbstractType
 
     public String toString()
     {
-        String builder = "[Grfhic]\n" +
+        return "[Grfhic]\n" +
             "    .grfhic               = " +
             " ( " + field_1_grfhic + " )\n" +
             "         .fHtmlChecked             = " + isFHtmlChecked() + '\n' +
@@ -103,7 +103,6 @@ public abstract class GrfhicAbstractType
             "         .fHtmlHangingIndentBeneathNumber     = " + isFHtmlHangingIndentBeneathNumber() + '\n' +
             "         .fHtmlBuiltInBullet       = " + isFHtmlBuiltInBullet() + '\n' +
             "[/Grfhic]";
-        return builder;
     }
 
     /**
index f6034ef5a5b3051ba702fac9d6a30ed64e0dbdc3..1a7ed187d4cc9c1813fe12fb39a304a070fd497c 100644 (file)
@@ -40,8 +40,7 @@ public final class Areas implements Function {
                 RefListEval refListEval = (RefListEval) valueEval;
                 result = refListEval.getList().size();
             }
-            NumberEval numberEval = new NumberEval(new NumberPtg(result));
-            return numberEval;
+            return new NumberEval(new NumberPtg(result));
         } catch (Exception e) {
             return ErrorEval.VALUE_INVALID;
         }