Skip to content

Commit 28cb366

Browse files
committed
Make get-methods in Transform.SingleTransform public
DEVSIX-1310
1 parent 9375cf0 commit 28cb366

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

layout/src/main/java/com/itextpdf/layout/property/Transform.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,11 +60,11 @@ public SingleTransform(float a, float b, float c, float d, UnitValue tx, UnitVal
6060
this.ty = ty;
6161
}
6262

63-
private float[] getFloats() {
63+
public float[] getFloats() {
6464
return new float[]{a, b, c, d};
6565
}
6666

67-
private UnitValue[] getUnitValues() {
67+
public UnitValue[] getUnitValues() {
6868
return new UnitValue[]{tx, ty};
6969
}
7070
}

0 commit comments

Comments
 (0)