File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed
java/ql/lib/semmle/code/java/frameworks Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ class ThriftIface extends Interface {
25
25
this .getFile ( ) instanceof ThriftGeneratedFile
26
26
}
27
27
28
- /** Returns an implementation of a method of this interface. */
28
+ /** Gets an implementation of a method of this interface. */
29
29
Method getAnImplementingMethod ( ) {
30
30
result .getDeclaringType ( ) .( Class ) .getASupertype + ( ) = this and
31
31
result .overrides + ( this .getAMethod ( ) ) and
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ import semmle.code.java.dataflow.FlowSources
6
6
7
7
private class AndroidWidgetSourceModels extends SourceModelCsv {
8
8
override predicate row ( string row ) {
9
- row = [ "android.widget;EditText;true;getText;;;ReturnValue;android-widget" ]
9
+ row = "android.widget;EditText;true;getText;;;ReturnValue;android-widget"
10
10
}
11
11
}
12
12
@@ -18,6 +18,6 @@ private class DefaultAndroidWidgetSources extends RemoteFlowSource {
18
18
19
19
private class AndroidWidgetSummaryModels extends SummaryModelCsv {
20
20
override predicate row ( string row ) {
21
- row = [ "android.widget;EditText;true;getText;;;Argument[-1];ReturnValue;taint" ]
21
+ row = "android.widget;EditText;true;getText;;;Argument[-1];ReturnValue;taint"
22
22
}
23
23
}
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ class StrutsAnnotation extends Annotation {
15
15
class StrutsActionAnnotation extends StrutsAnnotation {
16
16
StrutsActionAnnotation ( ) { this .getType ( ) .hasName ( "Action" ) }
17
17
18
- /** Returns a callable annotated with this annotation. */
18
+ /** Gets a callable annotated with this annotation. */
19
19
Callable getActionCallable ( ) {
20
20
result = this .getAnnotatedElement ( )
21
21
or
You can’t perform that action at this time.
0 commit comments