From e023e674020f1a435f7b8c8b9276704f576ea6e5 Mon Sep 17 00:00:00 2001 From: CGantert345 <57003061+CGantert345@users.noreply.github.com> Date: Mon, 29 Mar 2021 14:08:45 +0200 Subject: structure change 1 --- src/org/uic/barcode/test/utils/TestUtils.java | 38 --------------------------- 1 file changed, 38 deletions(-) delete mode 100644 src/org/uic/barcode/test/utils/TestUtils.java (limited to 'src/org/uic/barcode/test/utils/TestUtils.java') diff --git a/src/org/uic/barcode/test/utils/TestUtils.java b/src/org/uic/barcode/test/utils/TestUtils.java deleted file mode 100644 index 7311ae4..0000000 --- a/src/org/uic/barcode/test/utils/TestUtils.java +++ /dev/null @@ -1,38 +0,0 @@ -package org.uic.barcode.test.utils; - -import java.text.ParseException; -import java.text.SimpleDateFormat; -import java.util.Date; - -public class TestUtils { - - final protected static char[] hexArray = "0123456789ABCDEF".toCharArray(); - - public static String hexStringFromBytes(byte[] bytes) { - char[] hexChars = new char[bytes.length * 2]; - for (int j = 0; j < bytes.length; j++) { - int v = bytes[j] & 0xFF; - hexChars[j * 2] = hexArray[v >>> 4]; - hexChars[j * 2 + 1] = hexArray[v & 0x0F]; - } - return new String(hexChars); - } - - - public static Date parseDate (String source){ - - SimpleDateFormat formatter = new SimpleDateFormat("yyyy-MM-dd"); - - try { - return formatter.parse(source); - } catch (ParseException e) { - try { - return formatter.parse("2001-01-01"); - } catch (ParseException e1) { - return null; - } - } - - } - -} -- cgit v1.2.3