@@ -275,28 +275,28 @@ public void test() throws Exception {
275
275
}
276
276
{
277
277
// "org.springframework.util;CollectionUtils;false;toMultiValueMap;;;Element of MapValue of Argument[0];Element of MapValue of ReturnValue;value"
278
- MultiValueMap out = null ;
278
+ MultiValueMap < Object , Object > out = null ;
279
279
Map in = Map .of (null , List .of (source ()));
280
280
out = CollectionUtils .toMultiValueMap (in );
281
- sink (getElement (( List ) getMapValue (out ))); // $hasValueFlow
281
+ sink (getElement (getMapValue (out ))); // $hasValueFlow
282
282
}
283
283
{
284
284
// "org.springframework.util;CollectionUtils;false;toMultiValueMap;;;MapKey of Argument[0];MapKey of ReturnValue;value"
285
- MultiValueMap out = null ;
285
+ MultiValueMap < Object , Object > out = null ;
286
286
Map in = Map .of (source (), null );
287
287
out = CollectionUtils .toMultiValueMap (in );
288
288
sink (getMapKey (out )); // $hasValueFlow
289
289
}
290
290
{
291
291
// "org.springframework.util;CollectionUtils;false;unmodifiableMultiValueMap;;;MapKey of Argument[0];MapKey of ReturnValue;value"
292
- MultiValueMap out = null ;
292
+ MultiValueMap < Object , Object > out = null ;
293
293
MultiValueMap in = new LinkedMultiValueMap (Map .of (source (), null ));
294
294
out = CollectionUtils .unmodifiableMultiValueMap (in );
295
295
sink (getMapKey (out )); // $hasValueFlow
296
296
}
297
297
{
298
298
// "org.springframework.util;CollectionUtils;false;unmodifiableMultiValueMap;;;MapValue of Argument[0];MapValue of ReturnValue;value"
299
- MultiValueMap out = null ;
299
+ MultiValueMap < Object , Object > out = null ;
300
300
MultiValueMap in = new LinkedMultiValueMap ();
301
301
in .put (null , source ());
302
302
out = CollectionUtils .unmodifiableMultiValueMap (in );
@@ -424,166 +424,166 @@ public void test() throws Exception {
424
424
}
425
425
{
426
426
// "org.springframework.util;LinkedMultiValueMap;false;LinkedMultiValueMap;(java.util.Map);;Element of MapValue of Argument[0];Element of MapValue of Argument[-1];value"
427
- LinkedMultiValueMap out = null ;
427
+ LinkedMultiValueMap < Object , Object > out = null ;
428
428
Map in = Map .of (null , List .of (source ()));
429
429
out = new LinkedMultiValueMap (in );
430
- sink (getElement (( List ) getMapValue (out ))); // $hasValueFlow
430
+ sink (getElement (getMapValue (out ))); // $hasValueFlow
431
431
}
432
432
{
433
433
// "org.springframework.util;LinkedMultiValueMap;false;LinkedMultiValueMap;(java.util.Map);;MapKey of Argument[0];MapKey of Argument[-1];value"
434
- LinkedMultiValueMap out = null ;
434
+ LinkedMultiValueMap < Object , Object > out = null ;
435
435
Map in = Map .of (source (), null );
436
436
out = new LinkedMultiValueMap (in );
437
437
sink (getMapKey (out )); // $hasValueFlow
438
438
}
439
439
{
440
440
// "org.springframework.util;LinkedMultiValueMap;false;deepCopy;;;MapKey of Argument[-1];MapValue of ReturnValue;value"
441
- LinkedMultiValueMap out = null ;
441
+ LinkedMultiValueMap < Object , Object > out = null ;
442
442
LinkedMultiValueMap in = (LinkedMultiValueMap )Map .of (source (), null );
443
443
out = in .deepCopy ();
444
444
sink (getMapValue (out )); // $hasValueFlow
445
445
}
446
446
{
447
447
// "org.springframework.util;LinkedMultiValueMap;false;deepCopy;;;MapValue of Argument[-1];MapValue of ReturnValue;value"
448
- LinkedMultiValueMap out = null ;
448
+ LinkedMultiValueMap < Object , Object > out = null ;
449
449
LinkedMultiValueMap in = (LinkedMultiValueMap )Map .of (null , source ());
450
450
out = in .deepCopy ();
451
451
sink (getMapValue (out )); // $hasValueFlow
452
452
}
453
453
{
454
454
// "org.springframework.util;MultiValueMap;true;add;;;Argument[0];MapKey of Argument[-1];value"
455
- MultiValueMapAdapter out = null ;
455
+ MultiValueMapAdapter < Object , Object > out = null ;
456
456
Object in = source ();
457
457
out .add (in , null );
458
458
sink (getMapKey (out )); // $hasValueFlow
459
459
}
460
460
{
461
461
// "org.springframework.util;MultiValueMap;true;add;;;Argument[0];MapKey of Argument[-1];value"
462
- MultiValueMap out = null ;
462
+ MultiValueMap < Object , Object > out = null ;
463
463
Object in = source ();
464
464
out .add (in , null );
465
465
sink (getMapKey (out )); // $hasValueFlow
466
466
}
467
467
{
468
468
// "org.springframework.util;MultiValueMap;true;add;;;Argument[0];MapKey of Argument[-1];value"
469
- MultiValueMap out = null ;
469
+ MultiValueMap < Object , Object > out = null ;
470
470
Object in = source ();
471
471
out .add (in , (Object )null );
472
472
sink (getMapKey (out )); // $hasValueFlow
473
473
}
474
474
{
475
475
// "org.springframework.util;MultiValueMap;true;add;;;Argument[1];Element of MapValue of Argument[-1];value"
476
- MultiValueMapAdapter out = null ;
476
+ MultiValueMapAdapter < Object , Object > out = null ;
477
477
Object in = source ();
478
478
out .add (null , in );
479
- sink (getElement (( List ) getMapValue (out ))); // $hasValueFlow
479
+ sink (getElement (getMapValue (out ))); // $hasValueFlow
480
480
}
481
481
{
482
482
// "org.springframework.util;MultiValueMap;true;add;;;Argument[1];Element of MapValue of Argument[-1];value"
483
- MultiValueMap out = null ;
483
+ MultiValueMap < Object , Object > out = null ;
484
484
Object in = source ();
485
485
out .add (null , in );
486
- sink (getElement (( List ) getMapValue (out ))); // $hasValueFlow
486
+ sink (getElement (getMapValue (out ))); // $hasValueFlow
487
487
}
488
488
{
489
489
// "org.springframework.util;MultiValueMap;true;add;;;Argument[1];Element of MapValue of Argument[-1];value"
490
- MultiValueMap out = null ;
490
+ MultiValueMap < Object , Object > out = null ;
491
491
Object in = source ();
492
492
out .add ((Object )null , in );
493
- sink (getElement (( List ) getMapValue (out ))); // $hasValueFlow
493
+ sink (getElement (getMapValue (out ))); // $hasValueFlow
494
494
}
495
495
{
496
496
// "org.springframework.util;MultiValueMap;true;addAll;(java.lang.Object,java.util.List);;Element of Argument[1];Element of MapValue of Argument[-1];value"
497
- MultiValueMapAdapter out = null ;
497
+ MultiValueMapAdapter < Object , Object > out = null ;
498
498
List in = List .of (source ());
499
499
out .addAll (null , in );
500
- sink (getElement (( List ) getMapValue (out ))); // $hasValueFlow
500
+ sink (getElement (getMapValue (out ))); // $hasValueFlow
501
501
}
502
502
{
503
503
// "org.springframework.util;MultiValueMap;true;addAll;(java.lang.Object,java.util.List);;Element of Argument[1];Element of MapValue of Argument[-1];value"
504
- MultiValueMap out = null ;
504
+ MultiValueMap < Object , Object > out = null ;
505
505
List in = List .of (source ());
506
506
out .addAll (null , in );
507
- sink (getElement (( List ) getMapValue (out ))); // $hasValueFlow
507
+ sink (getElement (getMapValue (out ))); // $hasValueFlow
508
508
}
509
509
{
510
510
// "org.springframework.util;MultiValueMap;true;addAll;(java.lang.Object,java.util.List);;Element of Argument[1];Element of MapValue of Argument[-1];value"
511
- MultiValueMap out = null ;
511
+ MultiValueMap < Object , Object > out = null ;
512
512
List in = List .of (source ());
513
513
out .addAll ((Object )null , in );
514
- sink (getElement (( List ) getMapValue (out ))); // $hasValueFlow
514
+ sink (getElement (getMapValue (out ))); // $hasValueFlow
515
515
}
516
516
{
517
517
// "org.springframework.util;MultiValueMap;true;addAll;(org.springframework.util.MultiValueMap);;Element of MapValue of Argument[0];Element of MapValue of Argument[-1];value"
518
- MultiValueMapAdapter out = null ;
518
+ MultiValueMapAdapter < Object , Object > out = null ;
519
519
MultiValueMap in = (MultiValueMap )Map .of (null , List .of (source ()));
520
520
out .addAll (in );
521
- sink (getElement (( List ) getMapValue (out ))); // $hasValueFlow
521
+ sink (getElement (getMapValue (out ))); // $hasValueFlow
522
522
}
523
523
{
524
524
// "org.springframework.util;MultiValueMap;true;addAll;(org.springframework.util.MultiValueMap);;Element of MapValue of Argument[0];Element of MapValue of Argument[-1];value"
525
- MultiValueMap out = null ;
525
+ MultiValueMap < Object , Object > out = null ;
526
526
MultiValueMap in = (MultiValueMap )Map .of (null , List .of (source ()));
527
527
out .addAll (in );
528
- sink (getElement (( List ) getMapValue (out ))); // $hasValueFlow
528
+ sink (getElement (getMapValue (out ))); // $hasValueFlow
529
529
}
530
530
{
531
531
// "org.springframework.util;MultiValueMap;true;addAll;;;Argument[0];MapKey of Argument[-1];value"
532
- MultiValueMapAdapter out = null ;
532
+ MultiValueMapAdapter < Object , Object > out = null ;
533
533
Object in = source ();
534
534
out .addAll (in , null );
535
535
sink (getMapKey (out )); // $hasValueFlow
536
536
}
537
537
{
538
538
// "org.springframework.util;MultiValueMap;true;addAll;;;Argument[0];MapKey of Argument[-1];value"
539
- MultiValueMap out = null ;
539
+ MultiValueMap < Object , Object > out = null ;
540
540
Object in = source ();
541
541
out .addAll (in , (List )null );
542
542
sink (getMapKey (out )); // $hasValueFlow
543
543
}
544
544
{
545
545
// "org.springframework.util;MultiValueMap;true;addAll;;;Argument[0];MapKey of Argument[-1];value"
546
- MultiValueMapAdapter out = null ;
546
+ MultiValueMapAdapter < Object , Object > out = null ;
547
547
MultiValueMap <Object , Object > mvm = null ;
548
548
mvm .set (source (), "someValue" );
549
549
out .addAll (mvm );
550
550
sink (getMapKey (out )); // $hasValueFlow
551
551
}
552
552
{
553
553
// "org.springframework.util;MultiValueMap;true;addAll;;;Argument[0];MapKey of Argument[-1];value"
554
- MultiValueMap out = null ;
554
+ MultiValueMap < Object , Object > out = null ;
555
555
MultiValueMap <Object , Object > mvm = null ;
556
556
mvm .set (source (), "someValue" );
557
557
out .addAll (mvm );
558
558
sink (getMapKey (out )); // $hasValueFlow
559
559
}
560
560
{
561
561
// "org.springframework.util;MultiValueMap;true;addIfAbsent;;;Argument[0];MapKey of Argument[-1];value"
562
- MultiValueMap out = null ;
562
+ MultiValueMap < Object , Object > out = null ;
563
563
Object in = source ();
564
564
out .addIfAbsent (in , null );
565
565
sink (getMapKey (out )); // $hasValueFlow
566
566
}
567
567
{
568
568
// "org.springframework.util;MultiValueMap;true;addIfAbsent;;;Argument[0];MapKey of Argument[-1];value"
569
- MultiValueMap out = null ;
569
+ MultiValueMap < Object , Object > out = null ;
570
570
Object in = source ();
571
571
out .addIfAbsent (in , (Object )null );
572
572
sink (getMapKey (out )); // $hasValueFlow
573
573
}
574
574
{
575
575
// "org.springframework.util;MultiValueMap;true;addIfAbsent;;;Argument[1];Element of MapValue of Argument[-1];value"
576
- MultiValueMap out = null ;
576
+ MultiValueMap < Object , Object > out = null ;
577
577
Object in = source ();
578
578
out .addIfAbsent (null , in );
579
- sink (getElement (( List ) getMapValue (out ))); // $hasValueFlow
579
+ sink (getElement (getMapValue (out ))); // $hasValueFlow
580
580
}
581
581
{
582
582
// "org.springframework.util;MultiValueMap;true;addIfAbsent;;;Argument[1];Element of MapValue of Argument[-1];value"
583
- MultiValueMap out = null ;
583
+ MultiValueMap < Object , Object > out = null ;
584
584
Object in = source ();
585
585
out .addIfAbsent ((Object )null , in );
586
- sink (getElement (( List ) getMapValue (out ))); // $hasValueFlow
586
+ sink (getElement (getMapValue (out ))); // $hasValueFlow
587
587
}
588
588
{
589
589
// "org.springframework.util;MultiValueMap;true;getFirst;;;Element of MapValue of Argument[-1];ReturnValue;value"
@@ -608,73 +608,73 @@ public void test() throws Exception {
608
608
}
609
609
{
610
610
// "org.springframework.util;MultiValueMap;true;set;;;Argument[0];MapKey of Argument[-1];value"
611
- MultiValueMapAdapter out = null ;
611
+ MultiValueMapAdapter < Object , Object > out = null ;
612
612
Object in = source ();
613
613
out .set (in , null );
614
614
sink (getMapKey (out )); // $hasValueFlow
615
615
}
616
616
{
617
617
// "org.springframework.util;MultiValueMap;true;set;;;Argument[0];MapKey of Argument[-1];value"
618
- MultiValueMap out = null ;
618
+ MultiValueMap < Object , Object > out = null ;
619
619
Object in = source ();
620
620
out .set (in , null );
621
621
sink (getMapKey (out )); // $hasValueFlow
622
622
}
623
623
{
624
624
// "org.springframework.util;MultiValueMap;true;set;;;Argument[0];MapKey of Argument[-1];value"
625
- MultiValueMap out = null ;
625
+ MultiValueMap < Object , Object > out = null ;
626
626
Object in = source ();
627
627
out .set (in , (Object )null );
628
628
sink (getMapKey (out )); // $hasValueFlow
629
629
}
630
630
{
631
631
// "org.springframework.util;MultiValueMap;true;set;;;Argument[1];Element of MapValue of Argument[-1];value"
632
- MultiValueMapAdapter out = null ;
632
+ MultiValueMapAdapter < Object , Object > out = null ;
633
633
Object in = source ();
634
634
out .set (null , in );
635
- sink (getElement (( List ) getMapValue (out ))); // $hasValueFlow
635
+ sink (getElement (getMapValue (out ))); // $hasValueFlow
636
636
}
637
637
{
638
638
// "org.springframework.util;MultiValueMap;true;set;;;Argument[1];Element of MapValue of Argument[-1];value"
639
- MultiValueMap out = null ;
639
+ MultiValueMap < Object , Object > out = null ;
640
640
Object in = source ();
641
641
out .set (null , in );
642
- sink (getElement (( List ) getMapValue (out ))); // $hasValueFlow
642
+ sink (getElement (getMapValue (out ))); // $hasValueFlow
643
643
}
644
644
{
645
645
// "org.springframework.util;MultiValueMap;true;set;;;Argument[1];Element of MapValue of Argument[-1];value"
646
- MultiValueMap out = null ;
646
+ MultiValueMap < Object , Object > out = null ;
647
647
Object in = source ();
648
648
out .set ((Object )null , in );
649
- sink (getElement (( List ) getMapValue (out ))); // $hasValueFlow
649
+ sink (getElement (getMapValue (out ))); // $hasValueFlow
650
650
}
651
651
{
652
652
// "org.springframework.util;MultiValueMap;true;setAll;;;MapKey of Argument[0];MapKey of Argument[-1];value"
653
- MultiValueMapAdapter out = null ;
653
+ MultiValueMapAdapter < Object , Object > out = null ;
654
654
Map in = Map .of (source (), null );
655
655
out .setAll (in );
656
656
sink (getMapKey (out )); // $hasValueFlow
657
657
}
658
658
{
659
659
// "org.springframework.util;MultiValueMap;true;setAll;;;MapKey of Argument[0];MapKey of Argument[-1];value"
660
- MultiValueMap out = null ;
660
+ MultiValueMap < Object , Object > out = null ;
661
661
Map in = Map .of (source (), null );
662
662
out .setAll (in );
663
663
sink (getMapKey (out )); // $hasValueFlow
664
664
}
665
665
{
666
666
// "org.springframework.util;MultiValueMap;true;setAll;;;MapValue of Argument[0];Element of MapValue of Argument[-1];value"
667
- MultiValueMapAdapter out = null ;
667
+ MultiValueMapAdapter < Object , Object > out = null ;
668
668
Map in = Map .of (null , source ());
669
669
out .setAll (in );
670
- sink (getElement (( List ) getMapValue (out ))); // $hasValueFlow
670
+ sink (getElement (getMapValue (out ))); // $hasValueFlow
671
671
}
672
672
{
673
673
// "org.springframework.util;MultiValueMap;true;setAll;;;MapValue of Argument[0];Element of MapValue of Argument[-1];value"
674
- MultiValueMap out = null ;
674
+ MultiValueMap < Object , Object > out = null ;
675
675
Map in = Map .of (null , source ());
676
676
out .setAll (in );
677
- sink (getElement (( List ) getMapValue (out ))); // $hasValueFlow
677
+ sink (getElement (getMapValue (out ))); // $hasValueFlow
678
678
}
679
679
{
680
680
// "org.springframework.util;MultiValueMap;true;toSingleValueMap;;;Element of MapValue of Argument[-1];MapValue of ReturnValue;value"
@@ -706,14 +706,14 @@ public void test() throws Exception {
706
706
}
707
707
{
708
708
// "org.springframework.util;MultiValueMapAdapter;false;MultiValueMapAdapter;;;Element of MapValue of Argument[0];Element of MapValue of Argument[-1];value"
709
- MultiValueMapAdapter out = null ;
709
+ MultiValueMapAdapter < Object , Object > out = null ;
710
710
Map in = Map .of (null , List .of (source ()));
711
711
out = new MultiValueMapAdapter (in );
712
- sink (getElement (( List ) getMapValue (out ))); // $hasValueFlow
712
+ sink (getElement (getMapValue (out ))); // $hasValueFlow
713
713
}
714
714
{
715
715
// "org.springframework.util;MultiValueMapAdapter;false;MultiValueMapAdapter;;;MapKey of Argument[0];MapKey of Argument[-1];value"
716
- MultiValueMapAdapter out = null ;
716
+ MultiValueMapAdapter < Object , Object > out = null ;
717
717
Map in = Map .of (source (), null );
718
718
out = new MultiValueMapAdapter (in );
719
719
sink (getMapKey (out )); // $hasValueFlow
0 commit comments