File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
spring-data-mongodb/src/main/java/org/springframework/data/mongodb/core Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -50,11 +50,11 @@ public class DefaultIndexOperations implements IndexOperations {
50
50
51
51
private static final String PARTIAL_FILTER_EXPRESSION_KEY = "partialFilterExpression" ;
52
52
53
- protected final String collectionName ;
54
- protected final QueryMapper mapper ;
55
- protected final @ Nullable Class <?> type ;
53
+ private final String collectionName ;
54
+ private final QueryMapper mapper ;
55
+ private final @ Nullable Class <?> type ;
56
56
57
- protected final MongoOperations mongoOperations ;
57
+ private final MongoOperations mongoOperations ;
58
58
59
59
/**
60
60
* Creates a new {@link DefaultIndexOperations}.
@@ -132,7 +132,7 @@ public String ensureIndex(IndexDefinition indexDefinition) {
132
132
}
133
133
134
134
@ Nullable
135
- protected MongoPersistentEntity <?> lookupPersistentEntity (@ Nullable Class <?> entityType , String collection ) {
135
+ private MongoPersistentEntity <?> lookupPersistentEntity (@ Nullable Class <?> entityType , String collection ) {
136
136
137
137
if (entityType != null ) {
138
138
return mapper .getMappingContext ().getRequiredPersistentEntity (entityType );
You can’t perform that action at this time.
0 commit comments