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: operator-framework/src/main/java/io/javaoperatorsdk/operator/processing/annotation/AccumulativeMappingWriter.java
+3-4Lines changed: 3 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -47,16 +47,15 @@ public AccumulativeMappingWriter loadExistingMappings() {
Copy file name to clipboardExpand all lines: operator-framework/src/main/java/io/javaoperatorsdk/operator/processing/annotation/TypeParameterResolver.java
+12-14Lines changed: 12 additions & 14 deletions
Original file line number
Diff line number
Diff line change
@@ -15,9 +15,7 @@
15
15
importjavax.lang.model.type.TypeVariable;
16
16
importjavax.lang.model.util.Types;
17
17
18
-
/**
19
-
* This class can resolve a type parameter in the given index to the actual type defined.
20
-
*/
18
+
/** This class can resolve a type parameter in the given index to the actual type defined. */
21
19
classTypeParameterResolver {
22
20
23
21
privatefinalDeclaredTypeinterestedClass;
@@ -30,12 +28,12 @@ public TypeParameterResolver(DeclaredType interestedClass, int interestedTypeArg
30
28
}
31
29
32
30
/**
33
-
* @param typeUtils Type utilities, During the annotation processing processingEnv.getTypeUtils()
34
-
* can be passed.
31
+
* @param typeUtils Type utilities, During the annotation processing processingEnv.getTypeUtils()
32
+
* can be passed.
35
33
* @param declaredType Class or Interface which extends or implements the interestedClass, and the
36
-
* interest is getting the actual declared type is used.
34
+
* interest is getting the actual declared type is used.
37
35
* @return the type of the parameter if it can be resolved from the the given declareType,
0 commit comments