diff options
author | CGantert345 <57003061+CGantert345@users.noreply.github.com> | 2021-02-25 11:02:26 +0100 |
---|---|---|
committer | CGantert345 <57003061+CGantert345@users.noreply.github.com> | 2021-02-25 11:02:26 +0100 |
commit | 425bd35c736b7e1c0dbe5b3f9162e195b3be6018 (patch) | |
tree | bc4668aa125fb0a15518d464a1738c6b05e56d07 /src/net/gcdc/asn1/test/TestSequenceOfLong.java | |
parent | issuerOnLine changed from int to Integer as it is optional (diff) | |
download | UIC-barcode-425bd35c736b7e1c0dbe5b3f9162e195b3be6018.tar UIC-barcode-425bd35c736b7e1c0dbe5b3f9162e195b3be6018.tar.gz UIC-barcode-425bd35c736b7e1c0dbe5b3f9162e195b3be6018.tar.bz2 UIC-barcode-425bd35c736b7e1c0dbe5b3f9162e195b3be6018.tar.lz UIC-barcode-425bd35c736b7e1c0dbe5b3f9162e195b3be6018.tar.xz UIC-barcode-425bd35c736b7e1c0dbe5b3f9162e195b3be6018.tar.zst UIC-barcode-425bd35c736b7e1c0dbe5b3f9162e195b3be6018.zip |
Diffstat (limited to 'src/net/gcdc/asn1/test/TestSequenceOfLong.java')
-rw-r--r-- | src/net/gcdc/asn1/test/TestSequenceOfLong.java | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/src/net/gcdc/asn1/test/TestSequenceOfLong.java b/src/net/gcdc/asn1/test/TestSequenceOfLong.java deleted file mode 100644 index f5c295f..0000000 --- a/src/net/gcdc/asn1/test/TestSequenceOfLong.java +++ /dev/null @@ -1,24 +0,0 @@ -package net.gcdc.asn1.test;
-
-import java.util.Collection;
-import java.util.List;
-
-import net.gcdc.asn1.datatypes.Asn1SequenceOf;
-
-public class TestSequenceOfLong extends Asn1SequenceOf<Long> {
- public TestSequenceOfLong() { super(); }
- public TestSequenceOfLong(Collection<Long> coll) { super(coll); }
-
-
- public TestSequenceOfLong(List<Long> numbers) {
- super();
- for (Long number: numbers){
- this.add(new Long(number));
- }
- }
-
- public static TestSequenceOfLong getSequence(List<Long> numList) {
- if (numList == null || numList.isEmpty()) return null;
- return new TestSequenceOfLong(numList);
- }
-}
|