mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-08 06:53:45 +00:00
ICU-5328 make RBTrans be public (but still @internal, so not public API)
X-SVN-Rev: 20082
This commit is contained in:
parent
1fd2123188
commit
38491ca6b3
2 changed files with 4 additions and 3 deletions
|
@ -1,6 +1,6 @@
|
|||
/*
|
||||
*******************************************************************************
|
||||
* Copyright (C) 1996-2005, International Business Machines Corporation and *
|
||||
* Copyright (C) 1996-2006, International Business Machines Corporation and *
|
||||
* others. All Rights Reserved. *
|
||||
*******************************************************************************
|
||||
*/
|
||||
|
@ -272,7 +272,7 @@ import java.util.Hashtable;
|
|||
* @author Alan Liu
|
||||
* @internal
|
||||
*/
|
||||
class RuleBasedTransliterator extends Transliterator {
|
||||
public class RuleBasedTransliterator extends Transliterator {
|
||||
|
||||
private Data data;
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
/*
|
||||
**********************************************************************
|
||||
* Copyright (c) 2002-2005, International Business Machines Corporation
|
||||
* Copyright (c) 2002-2006, International Business Machines Corporation
|
||||
* and others. All Rights Reserved.
|
||||
**********************************************************************
|
||||
* Date Name Description
|
||||
|
@ -441,6 +441,7 @@ class TransliteratorIDParser {
|
|||
} else {
|
||||
t = single.getInstance();
|
||||
if (t == null) {
|
||||
t = single.getInstance();
|
||||
throw new IllegalArgumentException("Illegal ID " + single.canonID);
|
||||
}
|
||||
list.setElementAt(t, i);
|
||||
|
|
Loading…
Add table
Reference in a new issue