From 9ce069457bca016c8793c73844e5cc984deac365 Mon Sep 17 00:00:00 2001 From: shedaniel Date: Tue, 10 Mar 2020 02:03:11 +0800 Subject: new widget api Signed-off-by: shedaniel --- src/main/java/me/shedaniel/rei/utils/CollectionUtils.java | 2 -- 1 file changed, 2 deletions(-) (limited to 'src/main/java/me/shedaniel/rei/utils/CollectionUtils.java') diff --git a/src/main/java/me/shedaniel/rei/utils/CollectionUtils.java b/src/main/java/me/shedaniel/rei/utils/CollectionUtils.java index c67d6f26a..333bdda2e 100644 --- a/src/main/java/me/shedaniel/rei/utils/CollectionUtils.java +++ b/src/main/java/me/shedaniel/rei/utils/CollectionUtils.java @@ -26,13 +26,11 @@ package me.shedaniel.rei.utils; import com.google.common.collect.Lists; import com.google.common.collect.Sets; import me.shedaniel.rei.api.EntryStack; -import org.jetbrains.annotations.ApiStatus; import java.util.*; import java.util.function.Function; import java.util.function.Predicate; -@ApiStatus.Internal public class CollectionUtils { public static List getOrPutEmptyList(Map> map, A key) { List b = map.get(key); -- cgit