From a57fec2eaf6a87ab17f828399e032a68eb60c86f Mon Sep 17 00:00:00 2001 From: Yee Date: Thu, 16 Aug 2018 08:57:46 +0800 Subject: [PATCH] hash --- .../com/fr/third/net/jpountz/xxhash/XXHashFactory.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/fine-lz4/src/com/fr/third/net/jpountz/xxhash/XXHashFactory.java b/fine-lz4/src/com/fr/third/net/jpountz/xxhash/XXHashFactory.java index 6157dbace..e7be4b328 100644 --- a/fine-lz4/src/com/fr/third/net/jpountz/xxhash/XXHashFactory.java +++ b/fine-lz4/src/com/fr/third/net/jpountz/xxhash/XXHashFactory.java @@ -174,10 +174,10 @@ public final class XXHashFactory { private XXHashFactory(String impl) throws ClassNotFoundException, NoSuchFieldException, SecurityException, IllegalArgumentException, IllegalAccessException { this.impl = impl; - hash32 = classInstance("XXHash32" + impl); - streamingHash32Factory = classInstance("StreamingXXHash32" + impl + "$Factory"); - hash64 = classInstance("XXHash64" + impl); - streamingHash64Factory = classInstance("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];