You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: core/src/main/java/com/google/errorprone/bugpatterns/collectionincompatibletype/TypeArgOfMethodArgMatcher.java
+12-4
Original file line number
Diff line number
Diff line change
@@ -51,22 +51,30 @@ class TypeArgOfMethodArgMatcher extends AbstractCollectionIncompatibleTypeMatche
51
51
/**
52
52
* @param receiverTypeName The fully-qualified name of the type of the method receiver whose
53
53
* descendants to match on
54
-
* @param signature The signature of the method to match on
55
54
* @param receiverTypeArgIndex The index of the type argument that should match the method
56
55
* argument
57
56
* @param methodArgIndex The index of the method argument whose type argument we should extract
58
57
* @param methodArgTypeName The fully-qualified name of the type of the method argument whose type
59
58
* argument we should extract
60
59
* @param methodArgTypeArgIndex The index of the type argument to extract from the method argument
60
+
* @param name The name of the method to match on
61
+
* @param firstParam The type of the first parameter of the method
62
+
* @param otherParams The types of any additional parameters of the method
0 commit comments