Browse Source

Pull request #6809: REPORT-78067 三方组件批量升级

Merge in CORE/base-third from ~YUAN.WANG/base-third:feature/x to feature/x

* commit '813b52cfa0f0ae6b60bed13534d38b0ca5dcd711':
  REPORT-78067 三方组件批量升级
feature/x
Yuan.Wang-王垣 2 years ago
parent
commit
884166088e
  1. 8
      fine-lz4/src/main/java/com/fr/third/net/jpountz/xxhash/XXHashFactory.java

8
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 { private XXHashFactory(String impl) throws ClassNotFoundException, NoSuchFieldException, SecurityException, IllegalArgumentException, IllegalAccessException {
this.impl = impl; this.impl = impl;
hash32 = classInstance("net.jpountz.xxhash.XXHash32" + impl); hash32 = classInstance("com.fr.third.net.jpountz.xxhash.XXHash32" + impl);
streamingHash32Factory = classInstance("net.jpountz.xxhash.StreamingXXHash32" + impl + "$Factory"); streamingHash32Factory = classInstance("com.fr.third.net.jpountz.xxhash.StreamingXXHash32" + impl + "$Factory");
hash64 = classInstance("net.jpountz.xxhash.XXHash64" + impl); hash64 = classInstance("com.fr.third.net.jpountz.xxhash.XXHash64" + impl);
streamingHash64Factory = classInstance("net.jpountz.xxhash.StreamingXXHash64" + impl + "$Factory"); streamingHash64Factory = classInstance("com.fr.third.net.jpountz.xxhash.StreamingXXHash64" + impl + "$Factory");
// make sure it can run // make sure it can run
final byte[] bytes = new byte[100]; final byte[] bytes = new byte[100];

Loading…
Cancel
Save