Changed visibility of lists to allow subclasses to acces them (#770)

Signed-off-by: Christoph Weitkamp <github@christophweitkamp.de>
pull/773/head
Christoph Weitkamp 2019-04-29 19:10:07 +02:00 committed by Kai Kreuzer
parent 1bbf250d1f
commit 76387f2b79
1 changed files with 2 additions and 2 deletions

View File

@ -49,8 +49,8 @@ public abstract class BaseDynamicStateDescriptionProvider implements DynamicStat
private @NonNullByDefault({}) BundleContext bundleContext;
protected @NonNullByDefault({}) ChannelTypeI18nLocalizationService channelTypeI18nLocalizationService;
private final Map<ChannelUID, @Nullable String> channelPatternMap = new ConcurrentHashMap<>();
private final Map<ChannelUID, @Nullable List<StateOption>> channelOptionsMap = new ConcurrentHashMap<>();
protected final Map<ChannelUID, @Nullable String> channelPatternMap = new ConcurrentHashMap<>();
protected final Map<ChannelUID, @Nullable List<StateOption>> channelOptionsMap = new ConcurrentHashMap<>();
/**
* For a given channel UID, set a pattern that should be used for the channel, instead of the one defined statically