File tree Expand file tree Collapse file tree 2 files changed +0
-6
lines changed
native/src/main/java/net/md_5/bungee/jni Expand file tree Collapse file tree 2 files changed +0
-6
lines changed Original file line number Diff line number Diff line change @@ -37,9 +37,6 @@ public void free()
37
37
@ Override
38
38
public void cipher (ByteBuf in , ByteBuf out ) throws GeneralSecurityException
39
39
{
40
- // Smoke tests
41
- in .memoryAddress ();
42
- out .memoryAddress ();
43
40
Preconditions .checkState ( ctx != 0 , "Invalid pointer to AES key!" );
44
41
45
42
// Store how many bytes we can cipher
Original file line number Diff line number Diff line change @@ -48,9 +48,6 @@ public void free()
48
48
@ Override
49
49
public void process (ByteBuf in , ByteBuf out ) throws DataFormatException
50
50
{
51
- // Smoke tests
52
- in .memoryAddress ();
53
- out .memoryAddress ();
54
51
Preconditions .checkState ( ctx != 0 , "Invalid pointer to compress!" );
55
52
56
53
while ( !nativeCompress .finished && ( compress || in .isReadable () ) )
You can’t perform that action at this time.
0 commit comments