You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tamaya.apache.org by po...@apache.org on 2019/05/01 20:14:55 UTC

[incubator-tamaya] branch try_with_resource updated: Reduce visibility to package.

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 <gi...@hugo-hirsch.de>
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;
         }