Skip to content

Commit

Permalink
PDFBOX-5660: add toString()
Browse files Browse the repository at this point in the history
git-svn-id: https://svn.apache.org/repos/asf/pdfbox/trunk@1923792 13f79535-47bb-0310-9956-ffa450edef68
  • Loading branch information
THausherr committed Feb 13, 2025
1 parent 8629cd9 commit b9794d5
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -387,4 +387,9 @@ private static void getLuminosityRGB(float[] srcValues, float[] dstValues, float
result[2] = b / 255.0f;
}

@Override
public String toString()
{
return "BlendMode{name=" + name.getName() + ", isSeparable=" + isSeparable + '}';
}
}

0 comments on commit b9794d5

Please sign in to comment.