#648: Removed unnecessary parentheses.

(cherry picked from commit 99b5f28a49430521942d63cebdf104b9700e1d66)
This commit is contained in:
Harald Kuhr 2021-12-29 12:38:04 +01:00
parent b7192ae857
commit f6a9477279

View File

@ -398,10 +398,10 @@ public final class PSDMetadata extends AbstractMetadata {
node.setAttribute("clipping", getClippingValue(psdLayerInfo.blendMode.clipping)); // Enum: 0: Base, 1: Non-base, n: unknown node.setAttribute("clipping", getClippingValue(psdLayerInfo.blendMode.clipping)); // Enum: 0: Base, 1: Non-base, n: unknown
node.setAttribute("flags", String.valueOf(psdLayerInfo.blendMode.flags)); node.setAttribute("flags", String.valueOf(psdLayerInfo.blendMode.flags));
if ((psdLayerInfo.isGroup)) { if (psdLayerInfo.isGroup) {
node.setAttribute("group", "true"); node.setAttribute("group", "true");
} }
if ((psdLayerInfo.isDivider)) { if (psdLayerInfo.isDivider) {
node.setAttribute("sectionDivider", "true"); node.setAttribute("sectionDivider", "true");
} }
if ((psdLayerInfo.blendMode.flags & 0x01) != 0) { if ((psdLayerInfo.blendMode.flags & 0x01) != 0) {