summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCGantert345 <57003061+CGantert345@users.noreply.github.com>2020-08-20 15:56:23 +0200
committerCGantert345 <57003061+CGantert345@users.noreply.github.com>2020-08-20 15:56:23 +0200
commitd8f8c178f93ed60d32a9e4c5e59740d47bfd6e78 (patch)
treefdca812dcd3e970b1448d00fd9cdd099a1dc4bb6
parentDraft of the new DOSIPAS included (diff)
downloadUIC-barcode-d8f8c178f93ed60d32a9e4c5e59740d47bfd6e78.tar
UIC-barcode-d8f8c178f93ed60d32a9e4c5e59740d47bfd6e78.tar.gz
UIC-barcode-d8f8c178f93ed60d32a9e4c5e59740d47bfd6e78.tar.bz2
UIC-barcode-d8f8c178f93ed60d32a9e4c5e59740d47bfd6e78.tar.lz
UIC-barcode-d8f8c178f93ed60d32a9e4c5e59740d47bfd6e78.tar.xz
UIC-barcode-d8f8c178f93ed60d32a9e4c5e59740d47bfd6e78.tar.zst
UIC-barcode-d8f8c178f93ed60d32a9e4c5e59740d47bfd6e78.zip
-rw-r--r--src/org/uic/barcode/staticFrame/StaticFrame.java6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/org/uic/barcode/staticFrame/StaticFrame.java b/src/org/uic/barcode/staticFrame/StaticFrame.java
index 7a0f029..3c2a22c 100644
--- a/src/org/uic/barcode/staticFrame/StaticFrame.java
+++ b/src/org/uic/barcode/staticFrame/StaticFrame.java
@@ -379,9 +379,11 @@ public class StaticFrame {
//INTEGER --> tag 2
int integerTag = 2;
- byte[] b1 = toUnsignedBytes(i1);
+ //byte[] b1 = toUnsignedBytes(i1);
+ byte[] b1 = i1.toByteArray();
int lb1 = b1.length;
- byte[] b2 = toUnsignedBytes(i2);
+ //byte[] b2 = toUnsignedBytes(i2);
+ byte[] b2 = i2.toByteArray();
int lb2 = b2.length;
int sequenceLength = lb1 + lb2 + 4;