#648: Removed unnecessary parentheses.

This commit is contained in:
Harald Kuhr 2021-12-29 12:38:04 +01:00
parent b30fb4f8c3
commit 99b5f28a49

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("flags", String.valueOf(psdLayerInfo.blendMode.flags));
if ((psdLayerInfo.isGroup)) {
if (psdLayerInfo.isGroup) {
node.setAttribute("group", "true");
}
if ((psdLayerInfo.isDivider)) {
if (psdLayerInfo.isDivider) {
node.setAttribute("sectionDivider", "true");
}
if ((psdLayerInfo.blendMode.flags & 0x01) != 0) {