@@ -122,14 +122,14 @@ private class ApacheStringUtilsTaintPreservingMethod extends TaintPreservingCall
122
122
/**
123
123
* A method declared on `org.apache.commons.lang3.text.StrBuilder`.
124
124
*/
125
- abstract class ApacheStrBuilderMethod extends Callable {
125
+ class ApacheStrBuilderMethod extends Method {
126
126
ApacheStrBuilderMethod ( ) {
127
127
this .getDeclaringType ( ) .hasQualifiedName ( "org.apache.commons.lang3.text" , "StrBuilder" )
128
128
}
129
129
}
130
130
131
131
/**
132
- * An Apache Commons- Lang StrBuilder methods that add taint to the StrBuilder.
132
+ * An Apache Commons Lang StrBuilder method that adds taint to the StrBuilder.
133
133
*/
134
134
private class ApacheStrBuilderTaintingMethod extends ApacheStrBuilderMethod , TaintPreservingCallable {
135
135
ApacheStrBuilderTaintingMethod ( ) {
@@ -170,7 +170,7 @@ private class ApacheStrBuilderTaintingMethod extends ApacheStrBuilderMethod, Tai
170
170
}
171
171
172
172
/**
173
- * An Apache Commons- Lang StrBuilder methods that return taint from the StrBuilder.
173
+ * An Apache Commons Lang StrBuilder method that returns taint from the StrBuilder.
174
174
*/
175
175
private class ApacheStrBuilderTaintGetter extends ApacheStrBuilderMethod , TaintPreservingCallable {
176
176
ApacheStrBuilderTaintGetter ( ) {
@@ -188,7 +188,7 @@ private class ApacheStrBuilderTaintGetter extends ApacheStrBuilderMethod, TaintP
188
188
}
189
189
190
190
/**
191
- * An Apache Commons- Lang StrBuilder methods that write taint from the StrBuilder to some parameter.
191
+ * An Apache Commons Lang StrBuilder method that writes taint from the StrBuilder to some parameter.
192
192
*/
193
193
private class ApacheStrBuilderTaintWriter extends ApacheStrBuilderMethod , TaintPreservingCallable {
194
194
ApacheStrBuilderTaintWriter ( ) { this .hasName ( [ "appendTo" , "getChars" ] ) }
0 commit comments