From 08242a02e7506cd0aff3599a9fff911b6f7a3073 Mon Sep 17 00:00:00 2001 From: "Yuan.Wang" Date: Wed, 14 Sep 2022 22:40:18 +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 --- .../com/fr/third/net/jpountz/xxhash/XXHashFactory.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/fine-lz4/src/main/java/com/fr/third/net/jpountz/xxhash/XXHashFactory.java b/fine-lz4/src/main/java/com/fr/third/net/jpountz/xxhash/XXHashFactory.java index 4e564378c..110c2b2d0 100644 --- a/fine-lz4/src/main/java/com/fr/third/net/jpountz/xxhash/XXHashFactory.java +++ b/fine-lz4/src/main/java/com/fr/third/net/jpountz/xxhash/XXHashFactory.java @@ -176,10 +176,10 @@ public final class XXHashFactory { private XXHashFactory(String impl) throws ClassNotFoundException, NoSuchFieldException, SecurityException, IllegalArgumentException, IllegalAccessException { this.impl = impl; - hash32 = classInstance("net.jpountz.xxhash.XXHash32" + impl); - streamingHash32Factory = classInstance("net.jpountz.xxhash.StreamingXXHash32" + impl + "$Factory"); - hash64 = classInstance("net.jpountz.xxhash.XXHash64" + impl); - streamingHash64Factory = classInstance("net.jpountz.xxhash.StreamingXXHash64" + impl + "$Factory"); + hash32 = classInstance("com.fr.third.net.jpountz.xxhash.XXHash32" + impl); + streamingHash32Factory = classInstance("com.fr.third.net.jpountz.xxhash.StreamingXXHash32" + impl + "$Factory"); + hash64 = classInstance("com.fr.third.net.jpountz.xxhash.XXHash64" + impl); + streamingHash64Factory = classInstance("com.fr.third.net.jpountz.xxhash.StreamingXXHash64" + impl + "$Factory"); // make sure it can run final byte[] bytes = new byte[100];