@@ -138,7 +138,6 @@ public class Test {
138
138
MyAbstractMapEntry newMAMEWithMapValue (Object element ) { return new MyAbstractMapEntry (null ,element ); }
139
139
MyAbstractMapEntryDecorator newMAMEDWithMapValue (Object element ) { return new MyAbstractMapEntryDecorator (newMAMEWithMapValue (element )); }
140
140
MultiValueMap newMVMWithMapValue (Object element ) { MultiValueMap m = new MultiValueMap (); m .put (null ,element ); return m ; }
141
- MultiMap newMMWithMapValue (Object element ) { MultiMap m = new MultiValueMap (); m .put (null ,element ); return m ; }
142
141
ArrayListValuedHashMap newALVHMWithMapValue (Object element ) { ArrayListValuedHashMap m = new ArrayListValuedHashMap (); m .put (null ,element ); return m ; }
143
142
HashSetValuedHashMap newHSVHMWithMapValue (Object element ) { HashSetValuedHashMap m = new HashSetValuedHashMap (); m .put (null ,element ); return m ; }
144
143
OrderedMapIterator newOMIWithMapValue (Object element ) { LinkedMap m = new LinkedMap (); m .put (null ,element ); return m .mapIterator (); }
@@ -1839,7 +1838,7 @@ public void test() {
1839
1838
{
1840
1839
// "org.apache.commons.collections4;Get;true;get;;;MapValue of Argument[-1];ReturnValue;value"
1841
1840
Object out = null ;
1842
- MultiMap in = newMMWithMapValue ((String )source ());
1841
+ MultiMap in = newMVMWithMapValue ((String )source ());
1843
1842
out = in .get (null );
1844
1843
sink (out ); // $ hasValueFlow
1845
1844
}
@@ -1874,7 +1873,7 @@ public void test() {
1874
1873
{
1875
1874
// "org.apache.commons.collections4;Get;true;remove;(Object);;MapValue of Argument[-1];ReturnValue;value"
1876
1875
Object out = null ;
1877
- MultiMap in = newMMWithMapValue ((String )source ());
1876
+ MultiMap in = newMVMWithMapValue ((String )source ());
1878
1877
out = in .remove (null );
1879
1878
sink (out ); // $ hasValueFlow
1880
1879
}
@@ -1909,7 +1908,7 @@ public void test() {
1909
1908
{
1910
1909
// "org.apache.commons.collections4;Get;true;values;();;MapValue of Argument[-1];Element of ReturnValue;value"
1911
1910
Collection out = null ;
1912
- MultiMap in = newMMWithMapValue ((String )source ());
1911
+ MultiMap in = newMVMWithMapValue ((String )source ());
1913
1912
out = in .values ();
1914
1913
sink (getElement (out )); // $ hasValueFlow
1915
1914
}
@@ -2889,7 +2888,7 @@ public void test() {
2889
2888
{
2890
2889
// "org.apache.commons.collections4;MultiMap;true;get;;;Element of MapValue of Argument[-1];Element of ReturnValue;value"
2891
2890
Collection out = null ;
2892
- MultiMap in = newMMWithMapValue ((String )source ());
2891
+ MultiMap in = newMVMWithMapValue ((String )source ());
2893
2892
out = (Collection )in .get (null );
2894
2893
sink (getElement (out )); // $ hasValueFlow
2895
2894
}
@@ -2931,7 +2930,7 @@ public void test() {
2931
2930
{
2932
2931
// "org.apache.commons.collections4;MultiMap;true;values;;;Element of MapValue of Argument[-1];Element of ReturnValue;value"
2933
2932
Collection out = null ;
2934
- MultiMap in = newMMWithMapValue ((String )source ());
2933
+ MultiMap in = newMVMWithMapValue ((String )source ());
2935
2934
out = in .values ();
2936
2935
sink (getElement (out )); // $ hasValueFlow
2937
2936
}
@@ -3344,7 +3343,7 @@ public void test() {
3344
3343
{
3345
3344
// "org.apache.commons.collections4;Put;true;put;;;MapValue of Argument[-1];ReturnValue;value"
3346
3345
Object out = null ;
3347
- MultiMap in = newMMWithMapValue ((String )source ());
3346
+ MultiMap in = newMVMWithMapValue ((String )source ());
3348
3347
out = in .put (null , null );
3349
3348
sink (out ); // $ hasValueFlow
3350
3349
}
0 commit comments