diff options
author | 2018-11-28 15:20:18 +0000 | |
---|---|---|
committer | 2018-11-28 15:20:18 +0000 | |
commit | f7b3dff9eef45290d0324db01fb4aaa69bcd5062 (patch) | |
tree | 47615aebb1b1b67176ab743d6f83126e50e0fa22 | |
parent | a0ca79a603a0aecc1f3a723b25589aafb91943c7 (diff) | |
parent | cb64b85d581fc207688603fbca3770fb4bb0d008 (diff) |
Merge "Remove bouncycastle dependency from 021-string2."
-rw-r--r-- | test/021-string2/src/Main.java | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/test/021-string2/src/Main.java b/test/021-string2/src/Main.java index c713aa43a6..141a08983b 100644 --- a/test/021-string2/src/Main.java +++ b/test/021-string2/src/Main.java @@ -15,14 +15,13 @@ */ import junit.framework.Assert; -import java.lang.reflect.Method; import java.util.Locale; /** * more string tests */ public class Main { - public static void main(String args[]) throws Exception { + public static void main(String args[]) { String test = "0123456789"; String test1 = new String("0123456789"); // different object String test2 = new String("0123456780"); // different value @@ -86,9 +85,7 @@ public class Main { Assert.assertEquals("this is a path", test.replaceAll("/", " ")); Assert.assertEquals("this is a path", test.replace("/", " ")); - Class<?> Strings = Class.forName("com.android.org.bouncycastle.util.Strings"); - Method fromUTF8ByteArray = Strings.getDeclaredMethod("fromUTF8ByteArray", byte[].class); - String result = (String) fromUTF8ByteArray.invoke(null, new byte[] {'O', 'K'}); + String result = new String(new char[] { 'O', 'K' }); System.out.println(result); testCompareToAndEquals(); |