Skip to content

Commit 99e75f9

Browse files
committed
PDFBOX-5660: simplify code
git-svn-id: https://svn.apache.org/repos/asf/pdfbox/trunk@1930157 13f79535-47bb-0310-9956-ffa450edef68
1 parent c944060 commit 99e75f9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

xmpbox/src/main/java/org/apache/xmpbox/schema/XMPSchema.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -710,7 +710,7 @@ public List<String> getUnqualifiedBagValueList(String bagName)
710710
AbstractField abstractProperty = getAbstractProperty(bagName);
711711
if (abstractProperty instanceof ArrayProperty)
712712
{
713-
return ((ArrayProperty) getAbstractProperty(bagName)).getElementsAsString();
713+
return ((ArrayProperty) abstractProperty).getElementsAsString();
714714
}
715715
return null;
716716
}

0 commit comments

Comments
 (0)