regular maintenance
Improve code quality after Codacy.com analysis. Site: https://app.codacy.com
This commit is contained in:
parent
11dd761d76
commit
e83a2fcf82
|
@ -3,16 +3,16 @@
|
|||
ARTIFACT_ID=ulid-creator
|
||||
|
||||
# find the script folder
|
||||
SCRIPT_DIR=`dirname "$0"`
|
||||
SCRIPT_DIR=$(dirname "$0")
|
||||
|
||||
# go to the parent folder
|
||||
cd ${SCRIPT_DIR}/..
|
||||
cd "${SCRIPT_DIR}/.."
|
||||
|
||||
# compile the parent project
|
||||
mvn clean install
|
||||
|
||||
# create a symbolic link to be imported to the maven repository
|
||||
cp ${PWD}/target/${ARTIFACT_ID}-*-SNAPSHOT.jar ${PWD}/target/${ARTIFACT_ID}-0.0.1-BENCHMARK.jar
|
||||
# create a copy with the expected name
|
||||
cp "${PWD}/target/${ARTIFACT_ID}"-*-SNAPSHOT.jar "${PWD}/target/${ARTIFACT_ID}"-0.0.1-BENCHMARK.jar
|
||||
|
||||
# go to the benchmark folder
|
||||
cd benchmark
|
||||
|
@ -25,4 +25,3 @@ mvn clean install
|
|||
# /usr/lib/jvm/java-8-openjdk-amd64/jre/bin/java -jar target/benchmarks.jar
|
||||
java -jar target/benchmarks.jar
|
||||
|
||||
|
||||
|
|
|
@ -92,13 +92,11 @@ public class UniquenessTest {
|
|||
// Request a ULID
|
||||
Ulid ulid = factory.create(time);
|
||||
|
||||
if (verbose) {
|
||||
if (i % (max / 100) == 0) {
|
||||
if (verbose && (i % (max / 100) == 0)) {
|
||||
// Calculate and show progress
|
||||
progress = (int) ((i * 1.0 / max) * 100);
|
||||
System.out.println(String.format("[Thread %06d] %s %s %s%%", id, ulid, i, (int) progress));
|
||||
}
|
||||
}
|
||||
synchronized (hashSet) {
|
||||
// Insert the value in cache, if it does not exist in it.
|
||||
if (!hashSet.add(ulid)) {
|
||||
|
|
Loading…
Reference in New Issue