make some packages test only
All checks were successful
Server / build (push) Successful in 19m55s

This commit is contained in:
2024-07-07 00:13:22 +02:00
parent 48643a2803
commit 0b30e716a9
2 changed files with 4 additions and 3 deletions

View File

@@ -40,6 +40,7 @@
<dependency>
<groupId>org.testcontainers</groupId>
<artifactId>testcontainers</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.bouncycastle</groupId>
@@ -122,6 +123,7 @@
<dependency>
<groupId>org.jboss.slf4j</groupId>
<artifactId>slf4j-jboss-logmanager</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>commons-codec</groupId>
@@ -190,7 +192,7 @@
</native.image.path>
<java.util.logging.manager>org.jboss.logmanager.LogManager</java.util.logging.manager>
<buildDirectory>${project.build.directory}</buildDirectory>
<junit.jupiter.execution.parallel.enabled>true</junit.jupiter.execution.parallel.enabled>
<junit.jupiter.execution.parallel.enabled>false</junit.jupiter.execution.parallel.enabled>
<junit.jupiter.execution.parallel.mode.default>
concurrent
</junit.jupiter.execution.parallel.mode.default>

View File

@@ -4,7 +4,6 @@ import com.usatiuk.dhfs.storage.objects.repository.distributed.ConflictResolver;
import io.quarkus.logging.Log;
import jakarta.annotation.Nullable;
import org.apache.commons.lang3.NotImplementedException;
import org.jetbrains.annotations.NotNull;
import java.io.Serializable;
import java.util.*;
@@ -13,7 +12,7 @@ import java.util.concurrent.locks.ReentrantReadWriteLock;
public class JObject<T extends JObjectData> implements Serializable, Comparable<JObject<?>> {
@Override
public int compareTo(@NotNull JObject<?> o) {
public int compareTo(JObject<?> o) {
return getName().compareTo(o.getName());
}