mirror of
https://github.com/haraldk/TwelveMonkeys.git
synced 2025-08-04 20:15:28 -04:00
#648: Removed unnecessary parentheses.
(cherry picked from commit 99b5f28a49430521942d63cebdf104b9700e1d66)
This commit is contained in:
parent
b7192ae857
commit
f6a9477279
@ -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) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user