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 28
28
import java .util .Collections ;
29
29
import java .util .HashMap ;
30
30
import java .util .HashSet ;
31
+ import java .util .LinkedHashSet ;
31
32
import java .util .List ;
32
33
import java .util .Map ;
33
34
import java .util .Set ;
@@ -385,7 +386,7 @@ public ConnectionString(final String connectionString) {
385
386
warnOnUnsupportedOptions (combinedOptionsMaps );
386
387
}
387
388
388
- private static final Set <String > GENERAL_OPTIONS_KEYS = new HashSet <String >();
389
+ private static final Set <String > GENERAL_OPTIONS_KEYS = new LinkedHashSet <String >();
389
390
private static final Set <String > AUTH_KEYS = new HashSet <String >();
390
391
private static final Set <String > READ_PREFERENCE_KEYS = new HashSet <String >();
391
392
private static final Set <String > WRITE_CONCERN_KEYS = new HashSet <String >();
You can’t perform that action at this time.
0 commit comments