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 2020/02/22 20:02:01 UTC

[camel] branch master updated: Fix camel-yammer invalid javadoc char

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

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


The following commit(s) were added to refs/heads/master by this push:
     new f8efe37  Fix camel-yammer invalid javadoc char
f8efe37 is described below

commit f8efe3710185229786cd7f91fc2fcfd9f793ba1a
Author: Claus Ibsen <cl...@gmail.com>
AuthorDate: Sat Feb 22 20:59:28 2020 +0100

    Fix camel-yammer invalid javadoc char
---
 .../java/org/apache/camel/component/yammer/YammerConfiguration.java   | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/components/camel-yammer/src/main/java/org/apache/camel/component/yammer/YammerConfiguration.java b/components/camel-yammer/src/main/java/org/apache/camel/component/yammer/YammerConfiguration.java
index 0ba1f7f..f1a21b1 100644
--- a/components/camel-yammer/src/main/java/org/apache/camel/component/yammer/YammerConfiguration.java
+++ b/components/camel-yammer/src/main/java/org/apache/camel/component/yammer/YammerConfiguration.java
@@ -133,7 +133,7 @@ public class YammerConfiguration {
     /**
      * Returns messages older than the message ID specified as a numeric string.
      * This is useful for paginating messages. For example, if you're currently viewing 20 messages and the oldest is number 2912,
-     * you could append "?olderThan=2912″ to your request to get the 20 messages prior to those you're seeing.
+     * you could append olderThan=2912 to your request to get the 20 messages prior to those you're seeing.
      */
     public void setOlderThan(long olderThan) {
         this.olderThan = olderThan;
@@ -145,7 +145,7 @@ public class YammerConfiguration {
 
     /**
      * Returns messages newer than the message ID specified as a numeric string. This should be used when polling for new messages.
-     * If you're looking at messages, and the most recent message returned is 3516, you can make a request with the parameter "?newerThan=3516″
+     * If you're looking at messages, and the most recent message returned is 3516, you can make a request with the parameter newerThan=3516
      * to ensure that you do not get duplicate copies of messages already on your page.
      */
     public void setNewerThan(long newerThan) {