File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed
src/main/java/com/arangodb/springframework/core/mapping Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change 4444
4545import java .lang .annotation .Annotation ;
4646import java .util .*;
47+ import java .util .concurrent .ConcurrentHashMap ;
4748import java .util .stream .Collectors ;
4849
4950/**
@@ -78,7 +79,7 @@ public DefaultArangoPersistentEntity(final TypeInformation<T> information) {
7879 persistentIndexedProperties = new ArrayList <>();
7980 geoIndexedProperties = new ArrayList <>();
8081 fulltextIndexedProperties = new ArrayList <>();
81- repeatableAnnotationCache = new HashMap <>();
82+ repeatableAnnotationCache = new ConcurrentHashMap <>();
8283 documentAnnotation = findAnnotation (Document .class );
8384 edgeAnnotation = findAnnotation (Edge .class );
8485 String col = StringUtils .uncapitalize (information .getType ().getSimpleName ());
You can’t perform that action at this time.
0 commit comments