com.github.panhongan.util.hash.SimpleHash Maven / Gradle / Ivy
package com.github.panhongan.util.hash;
public class SimpleHash {
public static int hash(String str) {
return str.hashCode();
}
}
package com.github.panhongan.util.hash;
public class SimpleHash {
public static int hash(String str) {
return str.hashCode();
}
}