From commits-return-6857-archive-asf-public=cust-asf.ponee.io@tamaya.incubator.apache.org Wed May 1 20:14:56 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 69CCC180629 for ; Wed, 1 May 2019 22:14:56 +0200 (CEST) Received: (qmail 18482 invoked by uid 500); 1 May 2019 20:14:55 -0000 Mailing-List: contact commits-help@tamaya.incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@tamaya.incubator.apache.org Delivered-To: mailing list commits@tamaya.incubator.apache.org Received: (qmail 18472 invoked by uid 99); 1 May 2019 20:14:55 -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; Wed, 01 May 2019 20:14:55 +0000 Received: by gitbox.apache.org (ASF Mail Server at gitbox.apache.org, from userid 33) id B99AE871A3; Wed, 1 May 2019 20:14:55 +0000 (UTC) Date: Wed, 01 May 2019 20:14:55 +0000 To: "commits@tamaya.apache.org" Subject: [incubator-tamaya] branch try_with_resource updated: Reduce visibility to package. MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Message-ID: <155674169571.29288.13506804513462769834@gitbox.apache.org> From: pottlinger@apache.org X-Git-Host: gitbox.apache.org X-Git-Repo: incubator-tamaya X-Git-Refname: refs/heads/try_with_resource X-Git-Reftype: branch X-Git-Oldrev: 90581a94b99945e19abe6b8189020ee31fcc922f X-Git-Newrev: d3e49a44b816aabb3f0f2c0f565536d3c30cc653 X-Git-Rev: d3e49a44b816aabb3f0f2c0f565536d3c30cc653 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. pottlinger pushed a commit to branch try_with_resource in repository https://gitbox.apache.org/repos/asf/incubator-tamaya.git The following commit(s) were added to refs/heads/try_with_resource by this push: new d3e49a4 Reduce visibility to package. d3e49a4 is described below commit d3e49a44b816aabb3f0f2c0f565536d3c30cc653 Author: Hugo Hirsch AuthorDate: Wed May 1 22:14:42 2019 +0200 Reduce visibility to package. --- .../main/java/org/apache/tamaya/core/internal/OSGIServiceLoader.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/core/src/main/java/org/apache/tamaya/core/internal/OSGIServiceLoader.java b/code/core/src/main/java/org/apache/tamaya/core/internal/OSGIServiceLoader.java index d0f1ac3..90af2c2 100644 --- a/code/core/src/main/java/org/apache/tamaya/core/internal/OSGIServiceLoader.java +++ b/code/core/src/main/java/org/apache/tamaya/core/internal/OSGIServiceLoader.java @@ -235,7 +235,7 @@ public class OSGIServiceLoader implements BundleListener { static class JDKUtilServiceFactory implements ServiceFactory { private final Class serviceClass; - public JDKUtilServiceFactory(Class serviceClass) { + JDKUtilServiceFactory(Class serviceClass) { this.serviceClass = serviceClass; }