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/10/26 15:40:01 UTC

[camel] branch master updated: camel-core - Modularize the class is only used internal, so it should not be public.

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 3ee3f8b  camel-core - Modularize the class is only used internal, so it should not be public.
3ee3f8b is described below

commit 3ee3f8b029ba5248ac4a428dc0831354402a8cf0
Author: Claus Ibsen <cl...@gmail.com>
AuthorDate: Mon Oct 26 16:35:25 2020 +0100

    camel-core - Modularize the class is only used internal, so it should not be public.
---
 .../src/main/java/org/apache/camel/impl/converter/CachingInjector.java  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/core/camel-base/src/main/java/org/apache/camel/impl/converter/CachingInjector.java b/core/camel-base/src/main/java/org/apache/camel/impl/converter/CachingInjector.java
index fa2de81..03058bf 100644
--- a/core/camel-base/src/main/java/org/apache/camel/impl/converter/CachingInjector.java
+++ b/core/camel-base/src/main/java/org/apache/camel/impl/converter/CachingInjector.java
@@ -21,7 +21,7 @@ import org.apache.camel.spi.TypeConverterRegistry;
 /**
  * A caching proxy
  */
-public class CachingInjector<T> {
+class CachingInjector<T> {
     private final TypeConverterRegistry repository;
     private final Class<T> type;
     private T instance;