You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by da...@apache.org on 2023/07/25 17:13:29 UTC

[camel-spring-boot-examples] branch main updated: Change package name for User/Status classes from twitter4j -> twitter4j.v1 to match changes in twitter4j-core (#114)

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

davsclaus pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel-spring-boot-examples.git


The following commit(s) were added to refs/heads/main by this push:
     new 12c1371  Change package name for User/Status classes from twitter4j -> twitter4j.v1 to match changes in twitter4j-core (#114)
12c1371 is described below

commit 12c13715533b35d2e1e859c009fe02762f1f6f94
Author: Tom Cunningham <tc...@redhat.com>
AuthorDate: Tue Jul 25 13:13:23 2023 -0400

    Change package name for User/Status classes from twitter4j -> twitter4j.v1 to match changes in twitter4j-core (#114)
---
 .../java/org/apache/camel/example/mention/TwitterSalesforceRoute.java | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/twitter-salesforce/src/main/java/org/apache/camel/example/mention/TwitterSalesforceRoute.java b/twitter-salesforce/src/main/java/org/apache/camel/example/mention/TwitterSalesforceRoute.java
index 2f1f6a9..d073a3d 100644
--- a/twitter-salesforce/src/main/java/org/apache/camel/example/mention/TwitterSalesforceRoute.java
+++ b/twitter-salesforce/src/main/java/org/apache/camel/example/mention/TwitterSalesforceRoute.java
@@ -21,8 +21,8 @@ import java.lang.reflect.Method;
 import org.apache.camel.salesforce.draftdto.Contact;
 import org.apache.camel.builder.RouteBuilder;
 import org.springframework.stereotype.Component;
-import twitter4j.Status;
-import twitter4j.User;
+import twitter4j.v1.Status;
+import twitter4j.v1.User;
 
 @Component
 public class TwitterSalesforceRoute extends RouteBuilder {