From 0b7bf488b49e2ef9b6424627726d118e6fca84c2 Mon Sep 17 00:00:00 2001 From: "Yuan.Wang" Date: Wed, 14 Sep 2022 11:51:36 +0800 Subject: [PATCH] =?UTF-8?q?REPORT-78067=20=E4=B8=89=E6=96=B9=E7=BB=84?= =?UTF-8?q?=E4=BB=B6=E6=89=B9=E9=87=8F=E5=8D=87=E7=BA=A7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../java/com/fr/third/net/jpountz/lz4/LZ4Factory.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/fine-lz4/src/main/java/com/fr/third/net/jpountz/lz4/LZ4Factory.java b/fine-lz4/src/main/java/com/fr/third/net/jpountz/lz4/LZ4Factory.java index ba471e042..be262a2d4 100644 --- a/fine-lz4/src/main/java/com/fr/third/net/jpountz/lz4/LZ4Factory.java +++ b/fine-lz4/src/main/java/com/fr/third/net/jpountz/lz4/LZ4Factory.java @@ -190,10 +190,10 @@ public final class LZ4Factory { private LZ4Factory(String impl) throws ClassNotFoundException, NoSuchFieldException, SecurityException, IllegalArgumentException, IllegalAccessException, NoSuchMethodException, InstantiationException, InvocationTargetException { this.impl = impl; - fastCompressor = classInstance("net.jpountz.lz4.LZ4" + impl + "Compressor"); - highCompressor = classInstance("net.jpountz.lz4.LZ4HC" + impl + "Compressor"); - fastDecompressor = classInstance("net.jpountz.lz4.LZ4" + impl + "FastDecompressor"); - safeDecompressor = classInstance("net.jpountz.lz4.LZ4" + impl + "SafeDecompressor"); + fastCompressor = classInstance("com.fr.third.net.jpountz.lz4.LZ4" + impl + "Compressor"); + highCompressor = classInstance("com.fr.third.net.jpountz.lz4.LZ4HC" + impl + "Compressor"); + fastDecompressor = classInstance("com.fr.third.net.jpountz.lz4.LZ4" + impl + "FastDecompressor"); + safeDecompressor = classInstance("com.fr.third.net.jpountz.lz4.LZ4" + impl + "SafeDecompressor"); Constructor highConstructor = highCompressor.getClass().getDeclaredConstructor(int.class); highCompressors[DEFAULT_COMPRESSION_LEVEL] = highCompressor; for(int level = 1; level <= MAX_COMPRESSION_LEVEL; level++) {