Skip to content

Commit

Permalink
PDFBOX-5914: don't alter the phase here, this is done elsewhere
Browse files Browse the repository at this point in the history
git-svn-id: https://svn.apache.org/repos/asf/pdfbox/trunk@1922238 13f79535-47bb-0310-9956-ffa450edef68
  • Loading branch information
THausherr committed Nov 30, 2024
1 parent e90456a commit 68c0c80
Showing 1 changed file with 0 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1048,11 +1048,6 @@ public void setTextMatrix(Matrix value)
*/
public void setLineDashPattern(COSArray array, int phase)
{
if (phase < 0)
{
LOG.warn("Dash phase has negative value {}, set to 0", phase);
phase = 0;
}
PDLineDashPattern lineDash = new PDLineDashPattern(array, phase);
getGraphicsState().setLineDashPattern(lineDash);
}
Expand Down

0 comments on commit 68c0c80

Please sign in to comment.