Skip to content

Commit af1f3b2

Browse files
committed
Making columns and rows of DataMatrix barcode optional
1 parent a6482c9 commit af1f3b2

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ plugins {
66
}
77

88
group = 'com.labelzoom.api'
9-
version = '1.3.2'
9+
version = '1.3.3'
1010

1111
java {
1212
sourceCompatibility = JavaVersion.VERSION_1_8

src/main/java/com/labelzoom/api/model/components/barcodes/twod/CBarcodeDataMatrix.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,9 @@ public class CBarcodeDataMatrix extends A2DBarcode
2626

2727
private int quality = 0; // 0, 50, 80, 100, 140, 200
2828

29-
private int columns = 9; // 9 to 49
29+
private Integer columns; // 9 to 49
3030

31-
private int rows = 9; // 9 to 49
31+
private Integer rows; // 9 to 49
3232

3333
private int formatId = 6;
3434

0 commit comments

Comments
 (0)