Mark factory setter API as private for alpha release.
This commit is contained in:
parent
d1bbd856af
commit
c265fbe3ca
1 changed files with 5 additions and 1 deletions
|
@ -41,7 +41,11 @@ public final class MapFactories {
|
|||
<K, V> Map<K, V> forMap(Map<K, V> oldMap);
|
||||
}
|
||||
|
||||
public static void setMapFactory(MapFactory newMapFactory) {
|
||||
// NOTE(liujisi): The factory setter is temporarily marked as package private.
|
||||
// The way to provide customized implementations of maps for different
|
||||
// platforms are still under discussion. Mark it as private to avoid exposing
|
||||
// the API in proto3 alpha release.
|
||||
/* public */ static void setMapFactory(MapFactory newMapFactory) {
|
||||
mapFactory = newMapFactory;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue