Skip to content

Commit

Permalink
Java version decrease 11 -> 8
Browse files Browse the repository at this point in the history
-decreased java version for client module
-replaced improper symbols, which caused build fails
  • Loading branch information
mskvorcovs committed Sep 18, 2024
1 parent 675fbb1 commit 3a28222
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 3a28222

Please sign in to comment.