store repeated expressions as temporary variables to make code shorter
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1785793 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
5b879942fc
commit
8dd5f7b887
@ -58,17 +58,19 @@ public class TestZipPackage {
|
|||||||
|
|
||||||
// Check we found the contents of it
|
// Check we found the contents of it
|
||||||
boolean foundCoreProps = false, foundDocument = false, foundTheme1 = false;
|
boolean foundCoreProps = false, foundDocument = false, foundTheme1 = false;
|
||||||
for (PackagePart part : p.getParts()) {
|
for (final PackagePart part : p.getParts()) {
|
||||||
if (part.getPartName().toString().equals("/docProps/core.xml")) {
|
final String partName = part.getPartName().toString();
|
||||||
assertEquals(ContentTypes.CORE_PROPERTIES_PART, part.getContentType());
|
final String contentType = part.getContentType();
|
||||||
|
if ("/docProps/core.xml".equals(partName)) {
|
||||||
|
assertEquals(ContentTypes.CORE_PROPERTIES_PART, contentType);
|
||||||
foundCoreProps = true;
|
foundCoreProps = true;
|
||||||
}
|
}
|
||||||
if (part.getPartName().toString().equals("/word/document.xml")) {
|
if ("/word/document.xml".equals(partName)) {
|
||||||
assertEquals(XWPFRelation.DOCUMENT.getContentType(), part.getContentType());
|
assertEquals(XWPFRelation.DOCUMENT.getContentType(), contentType);
|
||||||
foundDocument = true;
|
foundDocument = true;
|
||||||
}
|
}
|
||||||
if (part.getPartName().toString().equals("/word/theme/theme1.xml")) {
|
if ("/word/theme/theme1.xml".equals(partName)) {
|
||||||
assertEquals(XWPFRelation.THEME.getContentType(), part.getContentType());
|
assertEquals(XWPFRelation.THEME.getContentType(), contentType);
|
||||||
foundTheme1 = true;
|
foundTheme1 = true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user