@@ -7,11 +7,11 @@ private import semmle.code.java.dataflow.ExternalFlow
77
88private class EntryType extends RefType {
99 EntryType ( ) {
10- this .getSourceDeclaration ( ) .getASourceSupertype * ( ) .hasQualifiedName ( "java.util" , "Map<> $Entry" )
10+ this .getSourceDeclaration ( ) .getASourceSupertype * ( ) .hasQualifiedName ( "java.util" , "Map$Entry" )
1111 }
1212
1313 RefType getValueType ( ) {
14- exists ( GenericType t | t .hasQualifiedName ( "java.util" , "Map<> $Entry" ) |
14+ exists ( GenericType t | t .hasQualifiedName ( "java.util" , "Map$Entry" ) |
1515 indirectlyInstantiates ( this , t , 1 , result )
1616 )
1717 }
@@ -95,10 +95,10 @@ private class ContainerFlowSummaries extends SummaryModelCsv {
9595 override predicate row ( string row ) {
9696 row =
9797 [
98- "java.util;Map<> $Entry;true;getKey;;;MapKey of Argument[-1];ReturnValue;value" ,
99- "java.util;Map<> $Entry;true;getValue;;;MapValue of Argument[-1];ReturnValue;value" ,
100- "java.util;Map<> $Entry;true;setValue;;;MapValue of Argument[-1];ReturnValue;value" ,
101- "java.util;Map<> $Entry;true;setValue;;;Argument[0];MapValue of Argument[-1];value" ,
98+ "java.util;Map$Entry;true;getKey;;;MapKey of Argument[-1];ReturnValue;value" ,
99+ "java.util;Map$Entry;true;getValue;;;MapValue of Argument[-1];ReturnValue;value" ,
100+ "java.util;Map$Entry;true;setValue;;;MapValue of Argument[-1];ReturnValue;value" ,
101+ "java.util;Map$Entry;true;setValue;;;Argument[0];MapValue of Argument[-1];value" ,
102102 "java.lang;Iterable;true;iterator;();;Element of Argument[-1];Element of ReturnValue;value" ,
103103 "java.lang;Iterable;true;spliterator;();;Element of Argument[-1];Element of ReturnValue;value" ,
104104 "java.util;Iterator;true;next;;;Element of Argument[-1];ReturnValue;value" ,
0 commit comments