|
@@ -894,7 +894,7 @@ public class Convert |
|
@@ -894,7 +894,7 @@ public class Convert |
|
894
|
*/
|
894
|
*/
|
|
895
|
public static String toSBC(String input, Set<Character> notConvertSet)
|
895
|
public static String toSBC(String input, Set<Character> notConvertSet)
|
|
896
|
{
|
896
|
{
|
|
897
|
- char c[] = input.toCharArray();
|
897
|
+ char[] c = input.toCharArray();
|
|
898
|
for (int i = 0; i < c.length; i++)
|
898
|
for (int i = 0; i < c.length; i++)
|
|
899
|
{
|
899
|
{
|
|
900
|
if (null != notConvertSet && notConvertSet.contains(c[i]))
|
900
|
if (null != notConvertSet && notConvertSet.contains(c[i]))
|
|
@@ -936,7 +936,7 @@ public class Convert |
|
@@ -936,7 +936,7 @@ public class Convert |
|
936
|
*/
|
936
|
*/
|
|
937
|
public static String toDBC(String text, Set<Character> notConvertSet)
|
937
|
public static String toDBC(String text, Set<Character> notConvertSet)
|
|
938
|
{
|
938
|
{
|
|
939
|
- char c[] = text.toCharArray();
|
939
|
+ char[] c = text.toCharArray();
|
|
940
|
for (int i = 0; i < c.length; i++)
|
940
|
for (int i = 0; i < c.length; i++)
|
|
941
|
{
|
941
|
{
|
|
942
|
if (null != notConvertSet && notConvertSet.contains(c[i]))
|
942
|
if (null != notConvertSet && notConvertSet.contains(c[i]))
|