Skip to content

Commit 1833fb0

Browse files
committed
@SInCE 2.2 markers
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/io/trunk@1304106 13f79535-47bb-0310-9956-ffa450edef68
1 parent 62dd096 commit 1833fb0

1 file changed

Lines changed: 8 additions & 2 deletions

File tree

src/main/java/org/apache/commons/io/ByteOrderMark.java

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,10 +41,16 @@ public class ByteOrderMark implements Serializable {
4141
/** UTF-16LE BOM (Little-Endian) */
4242
public static final ByteOrderMark UTF_16LE = new ByteOrderMark("UTF-16LE", 0xFF, 0xFE);
4343

44-
/** UFT-32BE BOM (Big-Endian) */
44+
/**
45+
* UFT-32BE BOM (Big-Endian)
46+
* @since 2.2
47+
*/
4548
public static final ByteOrderMark UTF_32BE = new ByteOrderMark("UTF-32BE", 0x00, 0x00, 0xFE, 0xFF);
4649

47-
/** UTF-32LE BOM (Big-Endian) */
50+
/**
51+
* UTF-32LE BOM (Big-Endian)
52+
* @since 2.2
53+
*/
4854
public static final ByteOrderMark UTF_32LE = new ByteOrderMark("UTF-32LE", 0xFE, 0xFF, 0x00, 0x00);
4955

5056
private final String charsetName;

0 commit comments

Comments
 (0)