Removes not needed Boxing
This commit is contained in:
parent
72106c877d
commit
f95d221859
1 changed files with 1 additions and 1 deletions
|
@ -81,7 +81,7 @@ public class ApiPart implements IPartHelper
|
|||
Object[] argsA = new Object[] { Name, Name, b };
|
||||
b = (byte[]) runTransformersMethod.invoke( loader, argsA );
|
||||
|
||||
Object[] args = new Object[] { Name, b, new Integer( 0 ), new Integer( b.length ) };
|
||||
Object[] args = new Object[] { Name, b, 0, b.length };
|
||||
clazz = (Class) defineClassMethod.invoke( loader, args );
|
||||
}
|
||||
finally
|
||||
|
|
Loading…
Reference in a new issue