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 2021/03/15 17:22:03 UTC

[camel] branch master updated: Update LdapEndpoint.java (#5215)

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 a55ab3c  Update LdapEndpoint.java (#5215)
a55ab3c is described below

commit a55ab3c50239a0b40d29d3e541d44e71d62e4466
Author: soilworker01 <43...@users.noreply.github.com>
AuthorDate: Mon Mar 15 18:21:39 2021 +0100

    Update LdapEndpoint.java (#5215)
    
    CAMEL-16356: changed getter from int to Integer
---
 .../src/main/java/org/apache/camel/component/ldap/LdapEndpoint.java     | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/components/camel-ldap/src/main/java/org/apache/camel/component/ldap/LdapEndpoint.java b/components/camel-ldap/src/main/java/org/apache/camel/component/ldap/LdapEndpoint.java
index d69d43f..606dc23 100644
--- a/components/camel-ldap/src/main/java/org/apache/camel/component/ldap/LdapEndpoint.java
+++ b/components/camel-ldap/src/main/java/org/apache/camel/component/ldap/LdapEndpoint.java
@@ -95,7 +95,7 @@ public class LdapEndpoint extends DefaultEndpoint {
         this.pageSize = pageSize;
     }
 
-    public int getPageSize() {
+    public Integer getPageSize() {
         return pageSize;
     }