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:
Mihai Nita 2022-09-21 17:18:47 +00:00 committed by Craig Cornelius
parent b08e51fa91
commit b23d6c1afe

View file

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