ICU-5328 make RBTrans be public (but still @internal, so not public API)

X-SVN-Rev: 20082
This commit is contained in:
Mark Davis 2006-08-17 22:09:20 +00:00
parent 1fd2123188
commit 38491ca6b3
2 changed files with 4 additions and 3 deletions

View file

@ -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;

View file

@ -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);