Skip to content

Commit bc57b44

Browse files
committed
GH-3126 Polishing previous nullify work
Resolves #3126 Signed-off-by: Oleg Zhurakousky <[email protected]>
1 parent 8a341e3 commit bc57b44

File tree

2 files changed

+0
-5
lines changed

2 files changed

+0
-5
lines changed

core/spring-cloud-stream-test-support/src/main/java/org/springframework/cloud/stream/binder/AbstractBinderTests.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,6 @@ public abstract class AbstractBinderTests<B extends AbstractTestBinder<? extends
8888
@BeforeEach
8989
public void before() {
9090
applicationContext = new AnnotationConfigApplicationContext(IntegrationAutoConfiguration.class);
91-
// applicationContext.refresh();
9291
this.messageConverter = new CompositeMessageConverterFactory()
9392
.getMessageConverterForAllRegistered();
9493
}

core/spring-cloud-stream/src/main/java/org/springframework/cloud/stream/binder/AbstractBinder.java

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -122,10 +122,6 @@ protected EvaluationContext getEvaluationContext() {
122122
public final void afterPropertiesSet() throws Exception {
123123
Assert.notNull(this.applicationContext,
124124
"The 'applicationContext' property must not be null");
125-
if (this.evaluationContext == null) {
126-
// this.evaluationContext = ExpressionUtils
127-
// .createStandardEvaluationContext(getBeanFactory());
128-
}
129125
onInit();
130126
}
131127

0 commit comments

Comments
 (0)