From 3e9d0158eb69a8e47169b0eae2d5762d08083826 Mon Sep 17 00:00:00 2001 From: Artem Bilan Date: Tue, 10 Dec 2013 11:56:17 +0200 Subject: [PATCH] INT-3231: Fix Tail setters types for SPR 3.1.x JIRA: https://jira.springsource.org/browse/INT-3231 --- .../file/config/FileTailInboundChannelAdapterFactoryBean.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/spring-integration-file/src/main/java/org/springframework/integration/file/config/FileTailInboundChannelAdapterFactoryBean.java b/spring-integration-file/src/main/java/org/springframework/integration/file/config/FileTailInboundChannelAdapterFactoryBean.java index 92d9c43f89..2e230b2eb2 100644 --- a/spring-integration-file/src/main/java/org/springframework/integration/file/config/FileTailInboundChannelAdapterFactoryBean.java +++ b/spring-integration-file/src/main/java/org/springframework/integration/file/config/FileTailInboundChannelAdapterFactoryBean.java @@ -110,11 +110,11 @@ public class FileTailInboundChannelAdapterFactoryBean extends AbstractFactoryBea this.outputChannel = outputChannel; } - public void setAutoStartup(Boolean autoStartup) { + public void setAutoStartup(boolean autoStartup) { this.autoStartup = autoStartup; } - public void setPhase(Integer phase) { + public void setPhase(int phase) { this.phase = phase; }