Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for Scharf (0.24 sec)

  1. src/main/java/org/codelibs/fess/helper/SystemHelper.java

                return path;
            }
    
            try {
                final StringBuilder buf = new StringBuilder(path.length() + 100);
                for (int i = 0; i < path.length(); i++) {
                    final char c = path.charAt(i);
                    if (CharUtil.isUrlChar(c) || c == '^' || c == '{' || c == '}' || c == '|' || c == '\\') {
                        buf.append(c);
                    } else {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Sat Apr 13 11:43:03 GMT 2024
    - 26.5K bytes
    - Viewed (2)
Back to top