Skip to content

Commit

Permalink
Merge pull request #117 from regulaforensics/java-version-decrease-8
Browse files Browse the repository at this point in the history
Java version decrease 11 -> 8
  • Loading branch information
KirylKovaliov authored Sep 20, 2024
2 parents 675fbb1 + 3a28222 commit ae12607
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions client/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ plugins {
}

java {
sourceCompatibility = JavaVersion.VERSION_11
targetCompatibility = JavaVersion.VERSION_11
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
withSourcesJar()
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ public ExtendedRfidTextField withBufText(String bufText) {

/**
* Text field data in UTF8 format. Results of reading different lines of a multiline field are
* separated by “^”
* separated by \"^\"
*
* @return bufText
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ public ExtendedTextField withBufText(String bufText) {

/**
* Text field data in UTF8 format. Results of reading different lines of a multiline field are
* separated by “^”
* separated by \"^\"
*
* @return bufText
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ public ExtendedVisualTextField withBufText(String bufText) {

/**
* Text field data in UTF8 format. Results of reading different lines of a multiline field are
* separated by “^”
* separated by \"^\"
*
* @return bufText
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -161,9 +161,9 @@ public class SecurityFeatureType {
/** Image from barcode vs. photo from camera */
public static final int PORTRAIT_COMPARISON_BARCODE_VS_CAMERA = 49;

/** Digital signature сheck */
/** Digital signature check */
public static final int CHECK_DIGITAL_SIGNATURE = 50;

/** Contact сhip check */
/** Contact chip check */
public static final int CONTACT_CHIP_CLASSIFICATION = 51;
}

0 comments on commit ae12607

Please sign in to comment.