@@ -124,7 +124,7 @@ public class Test {
124
124
MyAbstractMapEntry newMAMEWithMapKey (Object element ) { return new MyAbstractMapEntry (element ,null ); }
125
125
MyAbstractMapEntryDecorator newMAMEDWithMapKey (Object element ) { return new MyAbstractMapEntryDecorator (newMAMEWithMapKey (element )); }
126
126
MultiValueMap newMVMWithMapKey (Object element ) { MultiValueMap m = new MultiValueMap (); m .put (element ,null ); return m ; }
127
- MultiValuedMap newMVdMWithMapKey (Object element ) { MultiValuedMap m = new ArrayListValuedHashMap (); m .put (element ,null ); return m ; }
127
+ ArrayListValuedHashMap newALVHMWithMapKey (Object element ) { ArrayListValuedHashMap m = new ArrayListValuedHashMap (); m .put (element ,null ); return m ; }
128
128
OrderedMapIterator newOMIWithElement (Object element ) { LinkedMap m = new LinkedMap (); m .put (element ,null ); return m .mapIterator (); }
129
129
ResourceBundle newRBWithMapKey (Object element ) { return (ResourceBundle )null ; }
130
130
SortedMap newTreeMapWithMapKey (Object element ) { SortedMap m = new TreeMap (); m .put (element ,null ); return m ; }
@@ -2944,7 +2944,7 @@ public void test() {
2944
2944
{
2945
2945
// "org.apache.commons.collections4;MultiMapUtils;true;transformedMultiValuedMap;;;MapKey of Argument[0];MapKey of ReturnValue;value"
2946
2946
MultiValuedMap out = null ;
2947
- MultiValuedMap in = newMVdMWithMapKey ((String )source ());
2947
+ MultiValuedMap in = newALVHMWithMapKey ((String )source ());
2948
2948
out = MultiMapUtils .transformedMultiValuedMap (in , null , null );
2949
2949
sink (getMapKey (out )); // $ hasValueFlow
2950
2950
}
@@ -2958,7 +2958,7 @@ public void test() {
2958
2958
{
2959
2959
// "org.apache.commons.collections4;MultiMapUtils;true;unmodifiableMultiValuedMap;;;MapKey of Argument[0];MapKey of ReturnValue;value"
2960
2960
MultiValuedMap out = null ;
2961
- MultiValuedMap in = newMVdMWithMapKey ((String )source ());
2961
+ MultiValuedMap in = newALVHMWithMapKey ((String )source ());
2962
2962
out = MultiMapUtils .unmodifiableMultiValuedMap (in );
2963
2963
sink (getMapKey (out )); // $ hasValueFlow
2964
2964
}
@@ -3035,7 +3035,7 @@ public void test() {
3035
3035
{
3036
3036
// "org.apache.commons.collections4;MultiValuedMap;true;asMap;;;MapKey of Argument[-1];MapKey of ReturnValue;value"
3037
3037
Map out = null ;
3038
- MultiValuedMap in = newMVdMWithMapKey ((String )source ());
3038
+ MultiValuedMap in = newALVHMWithMapKey ((String )source ());
3039
3039
out = in .asMap ();
3040
3040
sink (getMapKey (out )); // $ hasValueFlow
3041
3041
}
@@ -3063,14 +3063,14 @@ public void test() {
3063
3063
{
3064
3064
// "org.apache.commons.collections4;MultiValuedMap;true;keySet;;;MapKey of Argument[-1];Element of ReturnValue;value"
3065
3065
Set out = null ;
3066
- MultiValuedMap in = newMVdMWithMapKey ((String )source ());
3066
+ MultiValuedMap in = newALVHMWithMapKey ((String )source ());
3067
3067
out = in .keySet ();
3068
3068
sink (getElement (out )); // $ hasValueFlow
3069
3069
}
3070
3070
{
3071
3071
// "org.apache.commons.collections4;MultiValuedMap;true;keys;;;MapKey of Argument[-1];Element of ReturnValue;value"
3072
3072
MultiSet out = null ;
3073
- MultiValuedMap in = newMVdMWithMapKey ((String )source ());
3073
+ MultiValuedMap in = newALVHMWithMapKey ((String )source ());
3074
3074
out = in .keys ();
3075
3075
sink (getElement (out )); // $ hasValueFlow
3076
3076
}
@@ -3084,7 +3084,7 @@ public void test() {
3084
3084
{
3085
3085
// "org.apache.commons.collections4;MultiValuedMap;true;mapIterator;;;MapKey of Argument[-1];Element of ReturnValue;value"
3086
3086
MapIterator out = null ;
3087
- MultiValuedMap in = newMVdMWithMapKey ((String )source ());
3087
+ MultiValuedMap in = newALVHMWithMapKey ((String )source ());
3088
3088
out = in .mapIterator ();
3089
3089
sink (getElement (out )); // $ hasValueFlow
3090
3090
}
@@ -3126,7 +3126,7 @@ public void test() {
3126
3126
{
3127
3127
// "org.apache.commons.collections4;MultiValuedMap;true;putAll;(MultiValuedMap);;MapKey of Argument[0];MapKey of Argument[-1];value"
3128
3128
MultiValuedMap out = null ;
3129
- MultiValuedMap in = newMVdMWithMapKey ((String )source ());
3129
+ MultiValuedMap in = newALVHMWithMapKey ((String )source ());
3130
3130
out .putAll (in );
3131
3131
sink (getMapKey (out )); // $ hasValueFlow
3132
3132
}
0 commit comments