You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@james.apache.org by rc...@apache.org on 2021/10/14 07:49:59 UTC

[james-project] branch master updated: JAMES-3658 LocalResourcesImpl should public constructor

This is an automated email from the ASF dual-hosted git repository.

rcordier pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/james-project.git


The following commit(s) were added to refs/heads/master by this push:
     new 8dd071d  JAMES-3658 LocalResourcesImpl should public constructor
8dd071d is described below

commit 8dd071d51f9ece8aaee3c84d3ab9a292d74afc27
Author: Tung Van TRAN <vt...@linagora.com>
AuthorDate: Tue Oct 12 14:27:35 2021 +0700

    JAMES-3658 LocalResourcesImpl should public constructor
---
 .../java/org/apache/james/mailetcontainer/impl/LocalResourcesImpl.java  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/server/mailet/mailetcontainer-impl/src/main/java/org/apache/james/mailetcontainer/impl/LocalResourcesImpl.java b/server/mailet/mailetcontainer-impl/src/main/java/org/apache/james/mailetcontainer/impl/LocalResourcesImpl.java
index 2aff7b3..ce9e47f 100644
--- a/server/mailet/mailetcontainer-impl/src/main/java/org/apache/james/mailetcontainer/impl/LocalResourcesImpl.java
+++ b/server/mailet/mailetcontainer-impl/src/main/java/org/apache/james/mailetcontainer/impl/LocalResourcesImpl.java
@@ -55,7 +55,7 @@ public class LocalResourcesImpl implements LocalResources {
     private final RecipientRewriteTable recipientRewriteTable;
 
     @Inject
-    LocalResourcesImpl(UsersRepository localUsers, DomainList domains, RecipientRewriteTable recipientRewriteTable) {
+    public LocalResourcesImpl(UsersRepository localUsers, DomainList domains, RecipientRewriteTable recipientRewriteTable) {
         this.localUsers = localUsers;
         this.domains = domains;
         this.recipientRewriteTable = recipientRewriteTable;

---------------------------------------------------------------------
To unsubscribe, e-mail: notifications-unsubscribe@james.apache.org
For additional commands, e-mail: notifications-help@james.apache.org