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 d30154a commit aeec706Copy full SHA for aeec706
mongodb-driver/src/main/java/org/jnosql/diana/mongodb/document/MongoDBDocumentConfiguration.java
@@ -103,12 +103,11 @@ public MongoDBDocumentCollectionManagerFactory get(Settings settings) throws Nul
103
return get(configurations);
104
}
105
106
- @Override
107
public MongoDBDocumentCollectionManagerFactory get(String pathFileConfig) throws NullPointerException {
108
requireNonNull(pathFileConfig, "settings is required");
109
110
Map<String, String> configuration = ConfigurationReader.from(pathFileConfig);
111
- return get(configurations);
+ return get(configuration);
112
113
114
0 commit comments