]> source.dussan.org Git - poi.git/commitdiff
lgtm warnings
authorPJ Fanning <fanningpj@apache.org>
Tue, 25 Sep 2018 22:07:56 +0000 (22:07 +0000)
committerPJ Fanning <fanningpj@apache.org>
Tue, 25 Sep 2018 22:07:56 +0000 (22:07 +0000)
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1841984 13f79535-47bb-0310-9956-ffa450edef68

src/ooxml/java/org/apache/poi/xslf/usermodel/XMLSlideShow.java
src/ooxml/java/org/apache/poi/xslf/usermodel/XSLFColor.java

index c275aa98d09006072da4cc8eba683a502dd1de24..4019030761ab13b833d86f512b3260a6938998f5 100644 (file)
@@ -372,8 +372,8 @@ public class XMLSlideShow extends POIXMLDocument
         }
 
         if (!themeIndexList.isEmpty()) {
-            Boolean found = false;
-            for (Integer i = 1; i <= themeIndexList.size(); i++) {
+            boolean found = false;
+            for (int i = 1; i <= themeIndexList.size(); i++) {
                 if (!themeIndexList.contains(i)) {
                     found = true;
                     themeIndex = i;
index 4b9d3106636b576828f7b4d04c33676856293131..d7aed091b11de726a2b82c3e5c9a084159a67af1 100644 (file)
@@ -153,7 +153,7 @@ public class XSLFColor {
                     colorRef = _phClr.getVal().toString();
                 }
                 // find referenced CTColor in the theme and convert it to java.awt.Color via a recursive call
-                CTColor ctColor = theme.getCTColor(colorRef);
+                CTColor ctColor = theme == null ? null : theme.getCTColor(colorRef);
                 if(ctColor != null) {
                     color = toColor(ctColor, null);
                 }