1
0
Fork 0

Code extracted from useless for loop. Closes #2872

This commit is contained in:
Marc Baloup 2020-06-27 02:52:04 +02:00
parent 9c078b78c3
commit 6949470e3b
Signed by: marcbal
GPG Key ID: BBC0FE3ABC30B893
1 changed files with 21 additions and 19 deletions

View File

@ -19,29 +19,31 @@ public class BungeeSecurityManager extends SecurityManager
private void checkRestricted(String text)
{
Class[] context = getClassContext();
for ( int i = 2; i < context.length; i++ )
int i = 2;
if ( i >= context.length )
{
ClassLoader loader = context[i].getClassLoader();
return;
}
// Bungee / system can do everything
if ( loader == ClassLoader.getSystemClassLoader() || loader == null )
{
break;
}
ClassLoader loader = context[i].getClassLoader();
AccessControlException ex = new AccessControlException( "Plugin violation: " + text );
if ( ENFORCE )
{
throw ex;
}
// Bungee / system can do everything
if ( loader == ClassLoader.getSystemClassLoader() || loader == null )
{
return;
}
StringWriter stack = new StringWriter();
ex.printStackTrace( new PrintWriter( stack ) );
if ( seen.add( stack.toString() ) )
{
ProxyServer.getInstance().getLogger().log( Level.WARNING, "Plugin performed restricted action, please inform them to use proper API methods: " + text, ex );
}
break;
AccessControlException ex = new AccessControlException( "Plugin violation: " + text );
if ( ENFORCE )
{
throw ex;
}
StringWriter stack = new StringWriter();
ex.printStackTrace( new PrintWriter( stack ) );
if ( seen.add( stack.toString() ) )
{
ProxyServer.getInstance().getLogger().log( Level.WARNING, "Plugin performed restricted action, please inform them to use proper API methods: " + text, ex );
}
}