diff options
author | Andrew Haley <aph@redhat.com> | 2016-09-30 16:24:48 +0000 |
---|---|---|
committer | Andrew Haley <aph@gcc.gnu.org> | 2016-09-30 16:24:48 +0000 |
commit | 07b78716af6a9d7c9fd1e94d9baf94a52c873947 (patch) | |
tree | 3f22b3241c513ad168c8353805614ae1249410f4 /libjava/testsuite/libjava.lang/utilTest.java | |
parent | eae993948bae8b788c53772bcb9217c063716f93 (diff) | |
download | gcc-07b78716af6a9d7c9fd1e94d9baf94a52c873947.zip gcc-07b78716af6a9d7c9fd1e94d9baf94a52c873947.tar.gz gcc-07b78716af6a9d7c9fd1e94d9baf94a52c873947.tar.bz2 |
Makefile.def: Remove libjava.
2016-09-30 Andrew Haley <aph@redhat.com>
* Makefile.def: Remove libjava.
* Makefile.tpl: Likewise.
* Makefile.in: Regenerate.
* configure.ac: Likewise.
* configure: Likewise.
* gcc/java: Remove.
* libjava: Likewise.
From-SVN: r240662
Diffstat (limited to 'libjava/testsuite/libjava.lang/utilTest.java')
-rw-r--r-- | libjava/testsuite/libjava.lang/utilTest.java | 58 |
1 files changed, 0 insertions, 58 deletions
diff --git a/libjava/testsuite/libjava.lang/utilTest.java b/libjava/testsuite/libjava.lang/utilTest.java deleted file mode 100644 index 221bbf8..0000000 --- a/libjava/testsuite/libjava.lang/utilTest.java +++ /dev/null @@ -1,58 +0,0 @@ -class utilTest { - - public static void main(String[] argv) throws Throwable { - byte[] b = new byte[] { - 0x01, 0x23, 0x45, 0x67, (byte) 0x89, (byte) 0xab, - (byte) 0xcd, (byte) 0xef - }; - String s = "0123456789ABCDEF"; - System.out.println(toString(b)); - System.out.println(s); - System.out.println(toString(toBytesFromString(s))); - } - - // The following comes from the GNU Crypto project gnu.crypto.util.Util - - private static final char[] HEX_DIGITS = { - '0','1','2','3','4','5','6','7','8','9','A','B','C','D','E','F' - }; - - public static byte[] toBytesFromString(String s) { - int limit = s.length(); - byte[] result = new byte[((limit + 1) / 2)]; - int i = 0, j = 0; - if ((limit % 2) == 1) { - result[j++] = (byte) fromDigit(s.charAt(i++)); - } - while (i < limit) { - result[j++] = - (byte)((fromDigit(s.charAt(i++)) << 4) | fromDigit(s.charAt(i++))); - } - return result; - } - - public static int fromDigit(char c) { - if (c >= '0' && c <= '9') { - return c - '0'; - } else if (c >= 'A' && c <= 'F') { - return c - 'A' + 10; - } else if (c >= 'a' && c <= 'f') { - return c - 'a' + 10; - } else - throw new IllegalArgumentException("Invalid hexadecimal digit: " + c); - } - - public static String toString(byte[] ba) { - return toString(ba, 0, ba.length); - } - - public static final String toString(byte[] ba, int offset, int length) { - char[] buf = new char[length * 2]; - for (int i = 0, j = 0, k; i < length; ) { - k = ba[offset + i++]; - buf[j++] = HEX_DIGITS[(k >>> 4) & 0x0F]; - buf[j++] = HEX_DIGITS[ k & 0x0F]; - } - return new String(buf); - } -} |