File tree Expand file tree Collapse file tree 1 file changed +14
-14
lines changed
src/main/java/org/apache/commons/io Expand file tree Collapse file tree 1 file changed +14
-14
lines changed Original file line number Diff line number Diff line change @@ -105,12 +105,12 @@ public class IOUtils {
105105 // Writer. Each method should take at least one of these as a parameter,
106106 // or return one of them.
107107
108- /**
109- * A singleton empty byte array .
108+ /**
109+ * CR char .
110110 *
111- * @since 2.9.0
111+ * @since 2.9.0
112112 */
113- public static final byte [] EMPTY_BYTE_ARRAY = new byte [ 0 ] ;
113+ public static final int CR = '\r' ;
114114
115115 /**
116116 * The default buffer size ({@value}) to use in copy methods.
@@ -132,12 +132,18 @@ public class IOUtils {
132132 */
133133 public static final char DIR_SEPARATOR_WINDOWS = '\\' ;
134134
135- /**
136- * CR char .
135+ /**
136+ * A singleton empty byte array .
137137 *
138- * @since 2.9.0
138+ * @since 2.9.0
139139 */
140- public static final int CR = '\r' ;
140+ public static final byte [] EMPTY_BYTE_ARRAY = new byte [0 ];
141+
142+ /**
143+ * Represents the end-of-file (or stream).
144+ * @since 2.5 (made public)
145+ */
146+ public static final int EOF = -1 ;
141147
142148 /**
143149 * LF char.
@@ -146,12 +152,6 @@ public class IOUtils {
146152 */
147153 public static final int LF = '\n' ;
148154
149- /**
150- * Represents the end-of-file (or stream).
151- * @since 2.5 (made public)
152- */
153- public static final int EOF = -1 ;
154-
155155 /**
156156 * The system line separator string.
157157 *
You can’t perform that action at this time.
0 commit comments