File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
java/client/src/org/openqa/selenium/json Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -102,6 +102,8 @@ private JsonTypeCoercer(Stream<TypeCoercer<?>> coercers) {
102
102
//noinspection unchecked
103
103
builder .add (new CollectionCoercer <>(Set .class , this , Collectors .toCollection (HashSet ::new )));
104
104
105
+ builder .add (new StaticInitializerCoercer ());
106
+
105
107
builder .add (new MapCoercer <>(
106
108
Map .class ,
107
109
this ,
@@ -110,8 +112,6 @@ private JsonTypeCoercer(Stream<TypeCoercer<?>> coercers) {
110
112
// If the requested type is exactly "Object", do some guess work
111
113
builder .add (new ObjectCoercer (this ));
112
114
113
- builder .add (new StaticInitializerCoercer ());
114
-
115
115
// Order matters here: we want this to be the last called coercer
116
116
builder .add (new InstanceCoercer (this ));
117
117
You can’t perform that action at this time.
0 commit comments