92
92
import org .apache .commons .collections4 .iterators .UnmodifiableMapIterator ;
93
93
import org .apache .commons .collections4 .iterators .UnmodifiableOrderedMapIterator ;
94
94
import org .apache .commons .collections4 .iterators .ZippingIterator ;
95
- import org .apache .commons .collections4 .keyvalue .K ;
96
95
import org .apache .commons .collections4 .keyvalue .MultiKey ;
97
96
import org .apache .commons .collections4 .list .AbstractLinkedList ;
98
97
import org .apache .commons .collections4 .list .CursorableLinkedList ;
@@ -1751,7 +1750,7 @@ public void test() throws Exception {
1751
1750
{
1752
1751
// "org.apache.commons.collections4.map;DefaultedMap;true;defaultedMap;;;MapKey of Argument[0];MapKey of ReturnValue;value"
1753
1752
Map out = null ;
1754
- Map in = (Map )Map .of (source (), null );
1753
+ Map < Object , String > in = (Map )Map .of (source (), null );
1755
1754
out = DefaultedMap .defaultedMap (in , (Transformer )null );
1756
1755
sink (getMapKey (out )); // $ hasValueFlow
1757
1756
}
@@ -1765,14 +1764,14 @@ public void test() throws Exception {
1765
1764
{
1766
1765
// "org.apache.commons.collections4.map;DefaultedMap;true;defaultedMap;;;MapKey of Argument[0];MapKey of ReturnValue;value"
1767
1766
DefaultedMap out = null ;
1768
- Map in = (Map )Map .of (source (), null );
1767
+ Map < Object , String > in = (Map )Map .of (source (), null );
1769
1768
out = DefaultedMap .defaultedMap (in , (Factory )null );
1770
1769
sink (getMapKey (out )); // $ hasValueFlow
1771
1770
}
1772
1771
{
1773
1772
// "org.apache.commons.collections4.map;DefaultedMap;true;defaultedMap;;;MapValue of Argument[0];MapValue of ReturnValue;value"
1774
1773
Map out = null ;
1775
- Map in = (Map )Map .of (null , source ());
1774
+ Map < Object , String > in = (Map )Map .of (null , source ());
1776
1775
out = DefaultedMap .defaultedMap (in , (Transformer )null );
1777
1776
sink (getMapValue (out )); // $ hasValueFlow
1778
1777
}
@@ -1786,7 +1785,7 @@ public void test() throws Exception {
1786
1785
{
1787
1786
// "org.apache.commons.collections4.map;DefaultedMap;true;defaultedMap;;;MapValue of Argument[0];MapValue of ReturnValue;value"
1788
1787
DefaultedMap out = null ;
1789
- Map in = (Map )Map .of (null , source ());
1788
+ Map < Object , String > in = (Map )Map .of (null , source ());
1790
1789
out = DefaultedMap .defaultedMap (in , (Factory )null );
1791
1790
sink (getMapValue (out )); // $ hasValueFlow
1792
1791
}
0 commit comments