Skip to content

Commit 7379154

Browse files
2 parents 4bf0c0a + 1de0bf5 commit 7379154

File tree

11 files changed

+11
-11
lines changed

11 files changed

+11
-11
lines changed

samples/GeneralSettings/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
<dependency>
1717
<groupId>com.dynamsoft</groupId>
1818
<artifactId>dbr</artifactId>
19-
<version>9.0.0</version>
19+
<version>9.4.0</version>
2020
</dependency>
2121
</dependencies>
2222

samples/GeneralSettings/src/main/java/GeneralSettings.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ public static void main(String[] args) {
5050
for (int i = 0; i < results.length; i++) {
5151
TextResult result = results[i];
5252

53-
String barcodeFormat = result.barcodeFormat==0?result.barcodeFormatString_2:result.barcodeFormatString;
53+
String barcodeFormat = result.barcodeFormatString;
5454
System.out.println("Barcode " + i + ":" + barcodeFormat + ","+ result.barcodeText);
5555
}
5656
} else {

samples/HelloWorld/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
<dependency>
1717
<groupId>com.dynamsoft</groupId>
1818
<artifactId>dbr</artifactId>
19-
<version>9.0.0</version>
19+
<version>9.4.0</version>
2020
</dependency>
2121
</dependencies>
2222

samples/ImageDecoding/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
<dependency>
1717
<groupId>com.dynamsoft</groupId>
1818
<artifactId>dbr</artifactId>
19-
<version>9.0.0</version>
19+
<version>9.4.0</version>
2020
</dependency>
2121
</dependencies>
2222

samples/ImageDecoding/src/main/java/ImageDecoding.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,7 @@ public static void main(String[] args) {
233233
for (int i = 0; i < results.length; i++) {
234234
TextResult result = results[i];
235235

236-
String barcodeFormat = result.barcodeFormat==0?result.barcodeFormatString_2:result.barcodeFormatString;
236+
String barcodeFormat = result.barcodeFormatString;
237237
System.out.println("Barcode " + i + ":" + barcodeFormat + ","+ result.barcodeText);
238238
}
239239
} else {

samples/Performance/AccuracyFirstSettings/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
<dependency>
1717
<groupId>com.dynamsoft</groupId>
1818
<artifactId>dbr</artifactId>
19-
<version>9.0.0</version>
19+
<version>9.4.0</version>
2020
</dependency>
2121
</dependencies>
2222

samples/Performance/AccuracyFirstSettings/src/main/java/AccuracyFirstSettings.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ private static void outputResults(TextResult[] results) {
3737
for (int i = 0; i < results.length; i++) {
3838
TextResult result = results[i];
3939

40-
String barcodeFormat = result.barcodeFormat==0?result.barcodeFormatString_2:result.barcodeFormatString;
40+
String barcodeFormat = result.barcodeFormatString;
4141
System.out.println("Barcode " + i + ":" + barcodeFormat + ","+ result.barcodeText);
4242
}
4343
} else {

samples/Performance/ReadRateFirstSettings/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
<dependency>
1717
<groupId>com.dynamsoft</groupId>
1818
<artifactId>dbr</artifactId>
19-
<version>9.0.0</version>
19+
<version>9.4.0</version>
2020
</dependency>
2121
</dependencies>
2222

samples/Performance/ReadRateFirstSettings/src/main/java/ReadRateFirstSettings.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ private static void outputResults(TextResult[] results) {
6464
for (int i = 0; i < results.length; i++) {
6565
TextResult result = results[i];
6666

67-
String barcodeFormat = result.barcodeFormat==0?result.barcodeFormatString_2:result.barcodeFormatString;
67+
String barcodeFormat = result.barcodeFormatString;
6868
System.out.println("Barcode " + i + ":" + barcodeFormat + ","+ result.barcodeText);
6969
}
7070
} else {

samples/Performance/SpeedFirstSettings/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
<dependency>
1717
<groupId>com.dynamsoft</groupId>
1818
<artifactId>dbr</artifactId>
19-
<version>9.0.0</version>
19+
<version>9.4.0</version>
2020
</dependency>
2121
</dependencies>
2222

0 commit comments

Comments
 (0)