From commits-return-56507-archive-asf-public=cust-asf.ponee.io@activemq.apache.org Mon Jul 15 05:11:25 2019 Return-Path: X-Original-To: archive-asf-public@cust-asf.ponee.io Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [207.244.88.153]) by mx-eu-01.ponee.io (Postfix) with SMTP id E980618066C for ; Mon, 15 Jul 2019 07:11:24 +0200 (CEST) Received: (qmail 1463 invoked by uid 500); 15 Jul 2019 05:11:24 -0000 Mailing-List: contact commits-help@activemq.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@activemq.apache.org Delivered-To: mailing list commits@activemq.apache.org Received: (qmail 1454 invoked by uid 99); 15 Jul 2019 05:11:24 -0000 Received: from ec2-52-202-80-70.compute-1.amazonaws.com (HELO gitbox.apache.org) (52.202.80.70) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 15 Jul 2019 05:11:24 +0000 Received: by gitbox.apache.org (ASF Mail Server at gitbox.apache.org, from userid 33) id 3624485E18; Mon, 15 Jul 2019 05:11:24 +0000 (UTC) Date: Mon, 15 Jul 2019 05:11:24 +0000 To: "commits@activemq.apache.org" Subject: [activemq] branch master updated: Make ActiveMQConfiguration.loadClass private MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Message-ID: <156316748385.8705.10268336499931172618@gitbox.apache.org> From: jbonofre@apache.org X-Git-Host: gitbox.apache.org X-Git-Repo: activemq X-Git-Refname: refs/heads/master X-Git-Reftype: branch X-Git-Oldrev: f88b0baef71f2db43ea2cb4c42113df0900686be X-Git-Newrev: 10910a423c3a874e90a402f54ecaa26bf0d05ee8 X-Git-Rev: 10910a423c3a874e90a402f54ecaa26bf0d05ee8 X-Git-NotificationType: ref_changed_plus_diff X-Git-Multimail-Version: 1.5.dev Auto-Submitted: auto-generated This is an automated email from the ASF dual-hosted git repository. jbonofre pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/activemq.git The following commit(s) were added to refs/heads/master by this push: new 10910a4 Make ActiveMQConfiguration.loadClass private new 69e5fef Merge pull request #372 from coheigea/config 10910a4 is described below commit 10910a423c3a874e90a402f54ecaa26bf0d05ee8 Author: Colm O hEigeartaigh AuthorDate: Thu Jul 11 10:09:30 2019 +0100 Make ActiveMQConfiguration.loadClass private --- .../java/org/apache/activemq/camel/component/ActiveMQConfiguration.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/activemq-camel/src/main/java/org/apache/activemq/camel/component/ActiveMQConfiguration.java b/activemq-camel/src/main/java/org/apache/activemq/camel/component/ActiveMQConfiguration.java index 4179b7b..af040a2 100644 --- a/activemq-camel/src/main/java/org/apache/activemq/camel/component/ActiveMQConfiguration.java +++ b/activemq-camel/src/main/java/org/apache/activemq/camel/component/ActiveMQConfiguration.java @@ -182,7 +182,7 @@ public class ActiveMQConfiguration extends JmsConfiguration { } } - public static Class loadClass(String name, ClassLoader loader) throws ClassNotFoundException { + private static Class loadClass(String name, ClassLoader loader) throws ClassNotFoundException { ClassLoader contextClassLoader = Thread.currentThread().getContextClassLoader(); if (contextClassLoader != null) { try {