Skip to content

Commit a6e4f29

Browse files
author
Sebastian Bauersfeld
committed
Java: Use the interface instead of the abstract class
1 parent 69f329f commit a6e4f29

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

java/ql/lib/semmle/code/java/frameworks/spring/SpringContext.qll

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,9 @@ private class StringSummaryCsv extends SummaryModelCsv {
1010
row =
1111
[
1212
//`namespace; type; subtypes; name; signature; ext; input; output; kind`
13-
"org.springframework.context.support;AbstractMessageSource;true;getMessage;(String,Object[],String,Locale);;ArrayElement of Argument[1];ReturnValue;taint",
14-
"org.springframework.context.support;AbstractMessageSource;true;getMessage;(String,Object[],String,Locale);;Argument[2];ReturnValue;taint",
15-
"org.springframework.context.support;AbstractMessageSource;true;getMessage;(String,Object[],Locale);;ArrayElement of Argument[1];ReturnValue;taint",
16-
"org.springframework.context.support;AbstractMessageSource;true;getMessageFromParent;;;ArrayElement of Argument[1];ReturnValue;taint",
13+
"org.springframework.context;MessageSource;true;getMessage;(String,Object[],String,Locale);;ArrayElement of Argument[1];ReturnValue;taint",
14+
"org.springframework.context;MessageSource;true;getMessage;(String,Object[],String,Locale);;Argument[2];ReturnValue;taint",
15+
"org.springframework.context;MessageSource;true;getMessage;(String,Object[],Locale);;ArrayElement of Argument[1];ReturnValue;taint"
1716
]
1817
}
1918
}

0 commit comments

Comments
 (0)