@@ -1920,7 +1920,7 @@ public void test() throws Exception {
1920
1920
{
1921
1921
// "org.apache.commons.collections4;Get;true;entrySet;;;MapKey of Argument[-1];MapKey of Element of ReturnValue;value"
1922
1922
Set <Map .Entry > out = null ;
1923
- Get in = newTrieWithMapKey ((String )source ());
1923
+ Get in = newPatriciaTrieWithMapKey ((String )source ());
1924
1924
out = in .entrySet ();
1925
1925
sink (getMapKeyFromEntry (getElement (out ))); // $ hasValueFlow
1926
1926
}
@@ -1941,7 +1941,7 @@ public void test() throws Exception {
1941
1941
{
1942
1942
// "org.apache.commons.collections4;Get;true;entrySet;;;MapValue of Argument[-1];MapValue of Element of ReturnValue;value"
1943
1943
Set <Map .Entry > out = null ;
1944
- Get in = newTrieWithMapValue ((String )source ());
1944
+ Get in = newPatriciaTrieWithMapValue ((String )source ());
1945
1945
out = in .entrySet ();
1946
1946
sink (getMapValueFromEntry (getElement (out ))); // $ hasValueFlow
1947
1947
}
@@ -1962,7 +1962,7 @@ public void test() throws Exception {
1962
1962
{
1963
1963
// "org.apache.commons.collections4;Get;true;get;;;MapValue of Argument[-1];ReturnValue;value"
1964
1964
Object out = null ;
1965
- Get in = newTrieWithMapValue ((String )source ());
1965
+ Get in = newPatriciaTrieWithMapValue ((String )source ());
1966
1966
out = in .get (null );
1967
1967
sink (out ); // $ hasValueFlow
1968
1968
}
@@ -1976,7 +1976,7 @@ public void test() throws Exception {
1976
1976
{
1977
1977
// "org.apache.commons.collections4;Get;true;keySet;();;MapKey of Argument[-1];Element of ReturnValue;value"
1978
1978
Set out = null ;
1979
- Get in = newTrieWithMapKey ((String )source ());
1979
+ Get in = newPatriciaTrieWithMapKey ((String )source ());
1980
1980
out = in .keySet ();
1981
1981
sink (getElement (out )); // $ hasValueFlow
1982
1982
}
@@ -1997,7 +1997,7 @@ public void test() throws Exception {
1997
1997
{
1998
1998
// "org.apache.commons.collections4;Get;true;remove;(Object);;MapValue of Argument[-1];ReturnValue;value"
1999
1999
Object out = null ;
2000
- Get in = newTrieWithMapValue ((String )source ());
2000
+ Get in = newPatriciaTrieWithMapValue ((String )source ());
2001
2001
out = in .remove (null );
2002
2002
sink (out ); // $ hasValueFlow
2003
2003
}
@@ -2032,7 +2032,7 @@ public void test() throws Exception {
2032
2032
{
2033
2033
// "org.apache.commons.collections4;Get;true;values;();;MapValue of Argument[-1];Element of ReturnValue;value"
2034
2034
Collection out = null ;
2035
- Get in = newTrieWithMapValue ((String )source ());
2035
+ Get in = newPatriciaTrieWithMapValue ((String )source ());
2036
2036
out = in .values ();
2037
2037
sink (getElement (out )); // $ hasValueFlow
2038
2038
}
@@ -3768,28 +3768,28 @@ public void test() throws Exception {
3768
3768
{
3769
3769
// "org.apache.commons.collections4;Trie;true;prefixMap;;;MapKey of Argument[-1];MapKey of ReturnValue;value"
3770
3770
SortedMap out = null ;
3771
- Trie in = newTrieWithMapKey ((String )source ());
3771
+ Trie in = newPatriciaTrieWithMapKey ((String )source ());
3772
3772
out = in .prefixMap (null );
3773
3773
sink (getMapKey (out )); // $ hasValueFlow
3774
3774
}
3775
3775
{
3776
3776
// "org.apache.commons.collections4;Trie;true;prefixMap;;;MapValue of Argument[-1];MapValue of ReturnValue;value"
3777
3777
SortedMap out = null ;
3778
- Trie in = newTrieWithMapValue ((String )source ());
3778
+ Trie in = newPatriciaTrieWithMapValue ((String )source ());
3779
3779
out = in .prefixMap (null );
3780
3780
sink (getMapValue (out )); // $ hasValueFlow
3781
3781
}
3782
3782
{
3783
3783
// "org.apache.commons.collections4;TrieUtils;true;unmodifiableTrie;;;MapKey of Argument[0];MapKey of ReturnValue;value"
3784
3784
Trie out = null ;
3785
- Trie in = newTrieWithMapKey ((String )source ());
3785
+ Trie in = newPatriciaTrieWithMapKey ((String )source ());
3786
3786
out = TrieUtils .unmodifiableTrie (in );
3787
3787
sink (getMapKey (out )); // $ hasValueFlow
3788
3788
}
3789
3789
{
3790
3790
// "org.apache.commons.collections4;TrieUtils;true;unmodifiableTrie;;;MapValue of Argument[0];MapValue of ReturnValue;value"
3791
3791
Trie out = null ;
3792
- Trie in = newTrieWithMapValue ((String )source ());
3792
+ Trie in = newPatriciaTrieWithMapValue ((String )source ());
3793
3793
out = TrieUtils .unmodifiableTrie (in );
3794
3794
sink (getMapValue (out )); // $ hasValueFlow
3795
3795
}
0 commit comments