Skip to content

Commit 5da1086

Browse files
committed
PDFBOX-6035: fix formatting
git-svn-id: https://svn.apache.org/repos/asf/pdfbox/trunk@1927181 13f79535-47bb-0310-9956-ffa450edef68
1 parent a16d1a6 commit 5da1086

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

pdfbox/src/main/java/org/apache/pdfbox/pdmodel/graphics/shading/PDShadingType4.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -166,9 +166,9 @@ List<ShadedTriangle> collectTriangles(AffineTransform xform, Matrix matrix)
166166
colRange, matrix, xform);
167167
ps = new Point2D[] { p0.point, p1.point, p2.point };
168168
cs = new float[][] { p0.color, p1.color, p2.color };
169-
list.add(new ShadedTriangle(ps, cs));
170-
flag = (byte) (mciis.readBits(bitsPerFlag) & 3);
171-
break;
169+
list.add(new ShadedTriangle(ps, cs));
170+
flag = (byte) (mciis.readBits(bitsPerFlag) & 3);
171+
break;
172172
case 1:
173173
case 2:
174174
lastIndex = list.size() - 1;

0 commit comments

Comments
 (0)