Skip to content

Commit

Permalink
Add java.util to allowed packages list
Browse files Browse the repository at this point in the history
  • Loading branch information
LexManos authored Feb 7, 2021
2 parents 5579913 + 1d4bf22 commit c21a551
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +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",
"java.util.function",
"org.objectweb.asm.util" // ASM util has nice debugging things like Trace visitors
));
Expand Down

0 comments on commit c21a551

Please sign in to comment.