Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getWindowsLineSeparator (0.38 sec)

  1. platforms/core-runtime/logging/src/main/java/org/gradle/util/TextUtil.java

        public TextUtil() {
            logDeprecation();
        }
    
        /**
         * Returns the line separator for Windows.
         */
        public static String getWindowsLineSeparator() {
            logDeprecation();
            return "\r\n";
        }
    
        /**
         * Returns the line separator for Unix.
         */
        public static String getUnixLineSeparator() {
            logDeprecation();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  2. platforms/core-runtime/base-services/src/main/java/org/gradle/util/internal/TextUtil.java

            }
        };
        private static final Pattern NON_UNIX_LINE_SEPARATORS = Pattern.compile("\r\n|\r");
    
        /**
         * Returns the line separator for Windows.
         */
        public static String getWindowsLineSeparator() {
            return "\r\n";
        }
    
        /**
         * Returns the line separator for Unix.
         */
        public static String getUnixLineSeparator() {
            return "\n";
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 12.8K bytes
    - Viewed (0)
Back to top