Skip to content

Commit

Permalink
Allow all of java.util, instead of just the function package
Browse files Browse the repository at this point in the history
  • Loading branch information
GirafiStudios committed Feb 6, 2021
1 parent 5579913 commit 369896f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ public class CoreModEngine {
private static final Marker COREMOD = MarkerManager.getMarker("COREMOD");
private List<CoreMod> coreMods = new ArrayList<>();
static final Set<String> ALLOWED_PACKAGES = new HashSet<>(Arrays.asList(
"java.util.function",
"java.util",
"org.objectweb.asm.util" // ASM util has nice debugging things like Trace visitors
));
static final Set<String> ALLOWED_CLASSES = new HashSet<>(Arrays.asList(
Expand Down

0 comments on commit 369896f

Please sign in to comment.