Remove unnecessary semicolon
See gh-24628
This commit is contained in:
committed by
Stephane Nicoll
parent
9928d74a9e
commit
097104584c
@@ -5,11 +5,11 @@ package org.test
|
||||
class SpringIntegrationExample implements CommandLineRunner {
|
||||
|
||||
@Autowired
|
||||
private ApplicationContext context;
|
||||
private ApplicationContext context
|
||||
|
||||
@Bean
|
||||
DirectChannel input() {
|
||||
new DirectChannel();
|
||||
new DirectChannel()
|
||||
}
|
||||
|
||||
@Override
|
||||
|
||||
Reference in New Issue
Block a user