blob: beb8303f22ed28078d6b2a3ffdd10887a219f94a [file] [log] [blame]
/**
*******************************************************************************
* Copyright (C) 2006-2008, International Business Machines Corporation and *
* others. All Rights Reserved. *
*******************************************************************************
*/
package com.ibm.icu.charset;
/**
* The purpose of this class is to set isBigEndian to false and isEndianSpecified to true in the super class, and to
* allow the Charset framework to open the variant UTF-32 converter without extra setup work.
*/
class CharsetUTF32LE extends CharsetUTF32 {
public CharsetUTF32LE(String icuCanonicalName, String javaCanonicalName, String[] aliases) {
super(icuCanonicalName, javaCanonicalName, aliases);
}
}