13
0
geforkt von Mirrors/Velocity

Slightly more accurate natives check

Dieser Commit ist enthalten in:
Andrew Steinborn 2019-09-07 00:15:10 -04:00
Ursprung 35856fec04
Commit 3a77068088

Datei anzeigen

@ -67,7 +67,7 @@ public class JavaVelocityCipher implements VelocityCipher {
} }
private static ByteBuf toHeap(ByteBuf src) { private static ByteBuf toHeap(ByteBuf src) {
if (!src.isDirect()) { if (src.hasArray()) {
return src.retain(); return src.retain();
} }