You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ac...@apache.org on 2021/01/14 07:43:03 UTC

[camel] 03/06: Remove explicit initialization to false (default value for its type).

This is an automated email from the ASF dual-hosted git repository.

acosentino pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel.git

commit 6a35c627588e63c609591b0c8f77f5cb9dceb85a
Author: jmerljak <jm...@users.noreply.github.com>
AuthorDate: Wed Jan 13 12:50:44 2021 +0100

    Remove explicit initialization to false (default value for its type).
---
 .../google/calendar/stream/GoogleCalendarStreamConfiguration.java     | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/components/camel-google-calendar/src/main/java/org/apache/camel/component/google/calendar/stream/GoogleCalendarStreamConfiguration.java b/components/camel-google-calendar/src/main/java/org/apache/camel/component/google/calendar/stream/GoogleCalendarStreamConfiguration.java
index d0e03ff..84a1aa6 100644
--- a/components/camel-google-calendar/src/main/java/org/apache/camel/component/google/calendar/stream/GoogleCalendarStreamConfiguration.java
+++ b/components/camel-google-calendar/src/main/java/org/apache/camel/component/google/calendar/stream/GoogleCalendarStreamConfiguration.java
@@ -64,8 +64,8 @@ public class GoogleCalendarStreamConfiguration implements Cloneable {
     private boolean consumeFromNow = true;
     @UriParam
     private boolean considerLastUpdate;
-    @UriParam(defaultValue = "false")
-    private boolean syncFlow = false;
+    @UriParam
+    private boolean syncFlow;
 
     public String getClientId() {
         return clientId;