【轻量级 PR】:简化return

product
CHY 2022-09-13 15:29:46 +08:00
parent 1124c27f06
commit 7f0f842651
1 changed files with 1 additions and 3 deletions

View File

@ -962,9 +962,7 @@ public class Convert
c[i] = (char) (c[i] - 65248);
}
}
String returnString = new String(c);
return returnString;
return new String(c);
}
/**