Authored by unknown

fix ProductSizesLogicService

... ... @@ -133,15 +133,6 @@ public class ProductSizesLogicService {
return results;
}
// <K, V> void increaseMapCount(K key, Map<K, Integer> map) {
// Integer value = map.get(key);
// if (value == null) {
// value = 0;
// }
// value = value + 1;
// map.put(key, value);
// }
private <K, V> void addValueToSet(K key, V value, Map<K, Set<V>> map) {
Set<V> values = map.get(key);
if (values == null) {
... ...