Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for newStringUnsafe (0.17 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. src/main/java/org/codelibs/core/lang/StringUtil.java

         *             Use the {@link String#String(char[])} constructor directly instead.
         *             This method will be removed in a future version.
         */
        @Deprecated
        public static String newStringUnsafe(final char[] chars) {
            if (chars == null) {
                return null;
            }
            return new String(chars);
        }
    Created: Fri Apr 03 20:58:12 GMT 2026
    - Last Modified: Thu Feb 12 12:10:45 GMT 2026
    - 21.5K bytes
    - Click Count (0)
Back to Top