More refactoring (tm)

This commit is contained in:
Lucas
2019-07-07 15:10:50 +02:00
parent e1a815eddd
commit e2aac6d899
159 changed files with 38213 additions and 46222 deletions

View File

@@ -30,9 +30,9 @@ public class DirectByteArrayCopier extends AbstractByteArrayCopier {
garbageValue = "-2034091753"
)
@Export("set")
void set(byte[] var1) {
this.directBuffer = ByteBuffer.allocateDirect(var1.length);
void set(byte[] array) {
this.directBuffer = ByteBuffer.allocateDirect(array.length);
this.directBuffer.position(0);
this.directBuffer.put(var1);
this.directBuffer.put(array);
}
}