aboutsummaryrefslogtreecommitdiffstats
path: root/poi-ooxml
diff options
context:
space:
mode:
authorPJ Fanning <fanningpj@apache.org>2022-07-15 23:03:51 +0000
committerPJ Fanning <fanningpj@apache.org>2022-07-15 23:03:51 +0000
commit51c9ac77a3c112b87a2a943fc0eaff427aa9c3a1 (patch)
treedd95690554c1de73e50b868b62e3d6ee4c5c4e92 /poi-ooxml
parentdbd078af9cb15f542b1df87c85a84a53b3308ec9 (diff)
downloadpoi-51c9ac77a3c112b87a2a943fc0eaff427aa9c3a1.tar.gz
poi-51c9ac77a3c112b87a2a943fc0eaff427aa9c3a1.zip
[github-355] Tidy up some boxed variables. Thanks to XenoAmess. This closes #355
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1902759 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'poi-ooxml')
-rw-r--r--poi-ooxml/src/test/java/org/apache/poi/xslf/usermodel/TestXSLFSheet.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/poi-ooxml/src/test/java/org/apache/poi/xslf/usermodel/TestXSLFSheet.java b/poi-ooxml/src/test/java/org/apache/poi/xslf/usermodel/TestXSLFSheet.java
index 5b6bacf58c..c6a149fa38 100644
--- a/poi-ooxml/src/test/java/org/apache/poi/xslf/usermodel/TestXSLFSheet.java
+++ b/poi-ooxml/src/test/java/org/apache/poi/xslf/usermodel/TestXSLFSheet.java
@@ -98,7 +98,7 @@ class TestXSLFSheet {
XMLSlideShow[] sourceSlideShows = new XMLSlideShow[] { textureSlideShow, pictureSlideShow };
XMLSlideShow targetSlideShow = textureSlideShow;
for (XMLSlideShow sourceSlideShow : sourceSlideShows) {
- Boolean sameSlideShow = sourceSlideShow == targetSlideShow;
+ boolean sameSlideShow = sourceSlideShow == targetSlideShow;
String assertMessage = "importing charts " + (sameSlideShow ? "within the same slide show" : "from another slideshow") + ": ";
XSLFSlide sourceSlide = sourceSlideShow.getSlides().get(0);
XSLFSlide slide = targetSlideShow.createSlide();