We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 61e4f3e commit 9f6c91bCopy full SHA for 9f6c91b
nullaway/src/main/java/com/uber/nullaway/generics/GenericsChecks.java
@@ -484,10 +484,10 @@ public void checkTypeParameterNullnessForAssignability(
484
Type.ClassType classType = (Type.ClassType) rhsType;
485
// create a new Type.ClassType that has inferred types
486
rhsType =
487
- new Type.ClassType(
488
- classType.getEnclosingType(),
489
- com.sun.tools.javac.util.List.from(newTypeArgument),
490
- classType.tsym);
+ new Type.ClassType(
+ classType.getEnclosingType(),
+ com.sun.tools.javac.util.List.from(newTypeArgument),
+ classType.tsym);
491
}
492
493
0 commit comments