8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e6f784e commit d2b66b2Copy full SHA for d2b66b2
src/main/java/com/arangodb/springframework/core/mapping/DefaultArangoPersistentEntity.java
@@ -44,6 +44,7 @@
44
45
import java.lang.annotation.Annotation;
46
import java.util.*;
47
+import java.util.concurrent.ConcurrentHashMap;
48
import java.util.stream.Collectors;
49
50
/**
@@ -78,7 +79,7 @@ public DefaultArangoPersistentEntity(final TypeInformation<T> information) {
78
79
persistentIndexedProperties = new ArrayList<>();
80
geoIndexedProperties = new ArrayList<>();
81
fulltextIndexedProperties = new ArrayList<>();
- repeatableAnnotationCache = new HashMap<>();
82
+ repeatableAnnotationCache = new ConcurrentHashMap<>();
83
documentAnnotation = findAnnotation(Document.class);
84
edgeAnnotation = findAnnotation(Edge.class);
85
String col = StringUtils.uncapitalize(information.getType().getSimpleName());
0 commit comments