Fix package and bean names

This commit is contained in:
Ilayaperumal Gopinathan
2019-03-25 23:20:46 +05:30
parent 749572a622
commit 923b057c18
2 changed files with 3 additions and 3 deletions

View File

@@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.springframework.cloud.dataflow.samples.source.http;
package org.springframework.cloud.dataflow.samples.source;
import java.util.function.Function;

View File

@@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.springframework.cloud.stream.app.log;
package org.springframework.cloud.dataflow.samples.sink;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
@@ -32,7 +32,7 @@ public class UserClicksPerRegionLogger {
@Bean
@ServiceActivator(inputChannel = Sink.INPUT)
public LoggingHandler userClicksPerRegionLogger() {
public LoggingHandler logger() {
LoggingHandler loggingHandler = new LoggingHandler(LoggingHandler.Level.INFO) {
@Override