File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
api/src/main/java/jakarta/json Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -299,7 +299,7 @@ public static JsonObjectBuilder createObjectBuilder(JsonObject object) {
299
299
*
300
300
* @since 1.1
301
301
*/
302
- public static JsonObjectBuilder createObjectBuilder (Map <String , Object > map ) {
302
+ public static JsonObjectBuilder createObjectBuilder (Map <String , ? > map ) {
303
303
return JsonProvider .provider ().createObjectBuilder (map );
304
304
}
305
305
Original file line number Diff line number Diff line change @@ -253,7 +253,7 @@ public JsonObjectBuilder createObjectBuilder(JsonObject object) {
253
253
*
254
254
* @since 1.1
255
255
*/
256
- public JsonObjectBuilder createObjectBuilder (Map <String , Object > map ) {
256
+ public JsonObjectBuilder createObjectBuilder (Map <String , ? > map ) {
257
257
throw new UnsupportedOperationException ();
258
258
}
259
259
You can’t perform that action at this time.
0 commit comments