File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed
driver-core/src/main/com/mongodb Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change 2828import java .util .Collections ;
2929import java .util .HashMap ;
3030import java .util .HashSet ;
31+ import java .util .LinkedHashSet ;
3132import java .util .List ;
3233import java .util .Map ;
3334import java .util .Set ;
@@ -385,7 +386,7 @@ public ConnectionString(final String connectionString) {
385386 warnOnUnsupportedOptions (combinedOptionsMaps );
386387 }
387388
388- private static final Set <String > GENERAL_OPTIONS_KEYS = new HashSet <String >();
389+ private static final Set <String > GENERAL_OPTIONS_KEYS = new LinkedHashSet <String >();
389390 private static final Set <String > AUTH_KEYS = new HashSet <String >();
390391 private static final Set <String > READ_PREFERENCE_KEYS = new HashSet <String >();
391392 private static final Set <String > WRITE_CONCERN_KEYS = new HashSet <String >();
You can’t perform that action at this time.
0 commit comments