Further improve garbage regexes
This commit is contained in:
parent
e0352b0be4
commit
ac925fca3d
@ -18,9 +18,15 @@ public class PredicateElementGarbage extends PredicateElementRegexes
|
||||
"^" + Pattern.quote("com.massivecraft.massivecore.command.MassiveCoreBukkitCommand.execute") + ".*$", // MassiveCommand - Execution Garbage
|
||||
"^" + Pattern.quote("com.massivecraft.massivecore.command.MassiveCommand.execute") + ".*$", // MassiveCommand - Execution Garbage
|
||||
|
||||
"^" + Pattern.quote("com.sk89q.bukkit.util.DynamicPluginCommand.execute") + ".*$", // SK89Q
|
||||
"^" + Pattern.quote("com.sk89q.worldguard.bukkit.WorldGuardPlugin.onCommand") + ".*$", // SK89Q
|
||||
"^" + Pattern.quote("com.sk89q.minecraft.util.commands.CommandsManager") + ".*$", // SK89Q
|
||||
|
||||
"^" + Pattern.quote("sun.reflect") + ".*$", // Event Reflection
|
||||
"^" + Pattern.quote("java.lang.reflect") + ".*$", // Event Reflection
|
||||
"^" + Pattern.quote("java.security.AccessController.doPrivileged") + ".*$" // Event Reflection
|
||||
|
||||
"^" + Pattern.quote("java.security.AccessController") + ".*$", // Event Reflection?
|
||||
"^" + Pattern.quote("sun.misc.Unsafe") + ".*$" // Event Reflection?
|
||||
);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user