mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-07 22:44:49 +00:00
ICU-22124 Tag the default constructor of OrderedMap as internal/deprecated
ICU-22124 Tag the default constructor of OrderedMap as internal/deprecated Fix for apireport, see #2193
This commit is contained in:
parent
b08e51fa91
commit
b23d6c1afe
1 changed files with 11 additions and 0 deletions
|
@ -664,6 +664,17 @@ public class Mf2DataModel {
|
|||
@Deprecated
|
||||
public static class OrderedMap<K, V> extends LinkedHashMap<K, V> {
|
||||
private static final long serialVersionUID = -7049361727790825496L;
|
||||
|
||||
/**
|
||||
* {@inheritDoc}
|
||||
*
|
||||
* @internal ICU 72 technology preview
|
||||
* @deprecated This API is for ICU internal use only.
|
||||
*/
|
||||
@Deprecated
|
||||
public OrderedMap() {
|
||||
super();
|
||||
}
|
||||
}
|
||||
|
||||
private final OrderedMap<String, Expression> localVariables;
|
||||
|
|
Loading…
Add table
Reference in a new issue