From 0a28f1dd13a43ff97679cf6b745d7a9159be8a38 Mon Sep 17 00:00:00 2001 From: Vitaly Kravtsov Date: Mon, 10 Apr 2023 15:51:02 +0300 Subject: [PATCH] [-] Minor changes --- .../src/com/shtrih/util/ServiceVersion.java | 2 +- .../test/com/shtrih/fiscalprinter/GCNGeneratorTests.java | 2 +- .../com/shtrih/fiscalprinter/commands/FSFindDocumentTests.java | 2 +- .../com/shtrih/fiscalprinter/commands/FSReadExpDateTests.java | 2 +- .../test/com/shtrih/fiscalprinter/commands/RawCommandTests.java | 2 +- .../scoc/commands/DeviceFirmwareResponseTests.java | 2 +- .../fiscalprinter/scoc/commands/DeviceStatusCommandTests.java | 2 +- .../fiscalprinter/scoc/commands/DeviceStatusResponseTests.java | 2 +- .../shtrih/fiscalprinter/scoc/commands/ScocCommandTests.java | 2 +- 9 files changed, 9 insertions(+), 9 deletions(-) diff --git a/Source/FiscalPrinterService/src/com/shtrih/util/ServiceVersion.java b/Source/FiscalPrinterService/src/com/shtrih/util/ServiceVersion.java index bee86f5d..680ffdec 100644 --- a/Source/FiscalPrinterService/src/com/shtrih/util/ServiceVersion.java +++ b/Source/FiscalPrinterService/src/com/shtrih/util/ServiceVersion.java @@ -1,5 +1,5 @@ package com.shtrih.util; public class ServiceVersion { - public static final String VERSION = "694-1-g911ccfc"; + public static final String VERSION = "695"; } \ No newline at end of file diff --git a/Source/android/FptrServiceAndroid/test/com/shtrih/fiscalprinter/GCNGeneratorTests.java b/Source/android/FptrServiceAndroid/test/com/shtrih/fiscalprinter/GCNGeneratorTests.java index 584909e0..92f2f4ae 100644 --- a/Source/android/FptrServiceAndroid/test/com/shtrih/fiscalprinter/GCNGeneratorTests.java +++ b/Source/android/FptrServiceAndroid/test/com/shtrih/fiscalprinter/GCNGeneratorTests.java @@ -2,7 +2,7 @@ import org.junit.Test; -import static com.shtrih.fiscalprinter.ByteUtils.byteArray; +import static com.shtrih.util.ByteUtils.byteArray; import static org.junit.Assert.assertArrayEquals; public class GCNGeneratorTests { diff --git a/Source/android/FptrServiceAndroid/test/com/shtrih/fiscalprinter/commands/FSFindDocumentTests.java b/Source/android/FptrServiceAndroid/test/com/shtrih/fiscalprinter/commands/FSFindDocumentTests.java index 8ab5c044..757db9aa 100644 --- a/Source/android/FptrServiceAndroid/test/com/shtrih/fiscalprinter/commands/FSFindDocumentTests.java +++ b/Source/android/FptrServiceAndroid/test/com/shtrih/fiscalprinter/commands/FSFindDocumentTests.java @@ -4,7 +4,7 @@ import org.junit.Test; -import static com.shtrih.fiscalprinter.ByteUtils.byteArray; +import static com.shtrih.util.ByteUtils.byteArray; public class FSFindDocumentTests { diff --git a/Source/android/FptrServiceAndroid/test/com/shtrih/fiscalprinter/commands/FSReadExpDateTests.java b/Source/android/FptrServiceAndroid/test/com/shtrih/fiscalprinter/commands/FSReadExpDateTests.java index 67c3d365..32206116 100644 --- a/Source/android/FptrServiceAndroid/test/com/shtrih/fiscalprinter/commands/FSReadExpDateTests.java +++ b/Source/android/FptrServiceAndroid/test/com/shtrih/fiscalprinter/commands/FSReadExpDateTests.java @@ -5,7 +5,7 @@ import org.junit.Test; -import static com.shtrih.fiscalprinter.ByteUtils.byteArray; +import static com.shtrih.util.ByteUtils.byteArray; import static org.junit.Assert.assertArrayEquals; import static org.junit.Assert.assertEquals; diff --git a/Source/android/FptrServiceAndroid/test/com/shtrih/fiscalprinter/commands/RawCommandTests.java b/Source/android/FptrServiceAndroid/test/com/shtrih/fiscalprinter/commands/RawCommandTests.java index 9269c295..695d569a 100644 --- a/Source/android/FptrServiceAndroid/test/com/shtrih/fiscalprinter/commands/RawCommandTests.java +++ b/Source/android/FptrServiceAndroid/test/com/shtrih/fiscalprinter/commands/RawCommandTests.java @@ -4,7 +4,7 @@ import org.junit.Test; -import static com.shtrih.fiscalprinter.ByteUtils.byteArray; +import static com.shtrih.util.ByteUtils.byteArray; import static org.junit.Assert.assertArrayEquals; import static org.junit.Assert.assertEquals; diff --git a/Source/android/FptrServiceAndroid/test/com/shtrih/fiscalprinter/scoc/commands/DeviceFirmwareResponseTests.java b/Source/android/FptrServiceAndroid/test/com/shtrih/fiscalprinter/scoc/commands/DeviceFirmwareResponseTests.java index c32c59f8..e20b5e33 100644 --- a/Source/android/FptrServiceAndroid/test/com/shtrih/fiscalprinter/scoc/commands/DeviceFirmwareResponseTests.java +++ b/Source/android/FptrServiceAndroid/test/com/shtrih/fiscalprinter/scoc/commands/DeviceFirmwareResponseTests.java @@ -2,7 +2,7 @@ import org.junit.Test; -import static com.shtrih.fiscalprinter.ByteUtils.byteArray; +import static com.shtrih.util.ByteUtils.byteArray; import static org.junit.Assert.assertArrayEquals; import static org.junit.Assert.assertEquals; diff --git a/Source/android/FptrServiceAndroid/test/com/shtrih/fiscalprinter/scoc/commands/DeviceStatusCommandTests.java b/Source/android/FptrServiceAndroid/test/com/shtrih/fiscalprinter/scoc/commands/DeviceStatusCommandTests.java index 8ca2b77e..f718c217 100644 --- a/Source/android/FptrServiceAndroid/test/com/shtrih/fiscalprinter/scoc/commands/DeviceStatusCommandTests.java +++ b/Source/android/FptrServiceAndroid/test/com/shtrih/fiscalprinter/scoc/commands/DeviceStatusCommandTests.java @@ -4,7 +4,7 @@ import org.junit.Test; -import static com.shtrih.fiscalprinter.ByteUtils.byteArray; +import static com.shtrih.util.ByteUtils.byteArray; import static org.junit.Assert.assertArrayEquals; public class DeviceStatusCommandTests { diff --git a/Source/android/FptrServiceAndroid/test/com/shtrih/fiscalprinter/scoc/commands/DeviceStatusResponseTests.java b/Source/android/FptrServiceAndroid/test/com/shtrih/fiscalprinter/scoc/commands/DeviceStatusResponseTests.java index 00627008..0e1c3fe2 100644 --- a/Source/android/FptrServiceAndroid/test/com/shtrih/fiscalprinter/scoc/commands/DeviceStatusResponseTests.java +++ b/Source/android/FptrServiceAndroid/test/com/shtrih/fiscalprinter/scoc/commands/DeviceStatusResponseTests.java @@ -2,7 +2,7 @@ import org.junit.Test; -import static com.shtrih.fiscalprinter.ByteUtils.byteArray; +import static com.shtrih.util.ByteUtils.byteArray; import static org.junit.Assert.assertEquals; public class DeviceStatusResponseTests { diff --git a/Source/android/FptrServiceAndroid/test/com/shtrih/fiscalprinter/scoc/commands/ScocCommandTests.java b/Source/android/FptrServiceAndroid/test/com/shtrih/fiscalprinter/scoc/commands/ScocCommandTests.java index b8672e79..f5aaf3c4 100644 --- a/Source/android/FptrServiceAndroid/test/com/shtrih/fiscalprinter/scoc/commands/ScocCommandTests.java +++ b/Source/android/FptrServiceAndroid/test/com/shtrih/fiscalprinter/scoc/commands/ScocCommandTests.java @@ -7,7 +7,7 @@ import java.io.ByteArrayInputStream; import java.io.InputStream; -import static com.shtrih.fiscalprinter.ByteUtils.byteArray; +import static com.shtrih.util.ByteUtils.byteArray; import static org.junit.Assert.assertArrayEquals; import static org.junit.Assert.assertEquals;