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
GH-10083: Add NullaWay to package-info for o.s.i.config package
Related to: #10083
Add `@org.jspecify.annotations.NullAway` to the `package-info.java`
Apply `@Nullable`, `@SuppressWarnings("NullAway.Init)` as need.
Tweak code as necessary in locations where NullAway can not discern that the null condition is already mitigated
* Remove `Objects.requireNonNull` surround `this.handler` in the `AbstractSimpleMessageHandlerFactoryBean`
Remove commented code in `AbstractSimpleMessageHandlerFactoryBean.extractTarget`
Restructure `IntegrationManagementConfigurer.registerComponentGauges` so that a NullAway suppression can be removed from the method
Copy file name to clipboardExpand all lines: spring-integration-core/src/main/java/org/springframework/integration/aggregator/AggregatingMessageHandler.java
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -43,7 +43,7 @@ public class AggregatingMessageHandler extends AbstractCorrelatingMessageHandler
Copy file name to clipboardExpand all lines: spring-integration-core/src/main/java/org/springframework/integration/config/AbstractEvaluationContextFactoryBean.java
+1Lines changed: 1 addition & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -56,6 +56,7 @@ public abstract class AbstractEvaluationContextFactoryBean implements Applicatio
Copy file name to clipboardExpand all lines: spring-integration-core/src/main/java/org/springframework/integration/config/AbstractMethodAnnotationPostProcessor.java
+20-14Lines changed: 20 additions & 14 deletions
Original file line number
Diff line number
Diff line change
@@ -23,6 +23,7 @@
23
23
importjava.util.Collection;
24
24
importjava.util.Collections;
25
25
importjava.util.List;
26
+
importjava.util.Objects;
26
27
importjava.util.function.Consumer;
27
28
importjava.util.function.Function;
28
29
importjava.util.stream.Collectors;
@@ -133,17 +134,21 @@ public abstract class AbstractMethodAnnotationPostProcessor<T extends Annotation
Copy file name to clipboardExpand all lines: spring-integration-core/src/main/java/org/springframework/integration/config/AbstractSimpleMessageHandlerFactoryBean.java
Copy file name to clipboardExpand all lines: spring-integration-core/src/main/java/org/springframework/integration/config/AbstractStandardMessageHandlerFactoryBean.java
0 commit comments