This is an automated email from the ASF dual-hosted git repository. btellier pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/james-project.git
commit 552663a1361075f0a61517b8202a3893823ab12c Author: Benoit Tellier <[email protected]> AuthorDate: Mon Dec 2 17:47:35 2019 +0700 JAMES-2991 junit5 test class fields visibility should be package private --- .../event/ComputeMessageFastViewProjectionListenerTest.java | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/server/protocols/jmap-draft/src/test/java/org/apache/james/jmap/event/ComputeMessageFastViewProjectionListenerTest.java b/server/protocols/jmap-draft/src/test/java/org/apache/james/jmap/event/ComputeMessageFastViewProjectionListenerTest.java index c74b111..a605e3e 100644 --- a/server/protocols/jmap-draft/src/test/java/org/apache/james/jmap/event/ComputeMessageFastViewProjectionListenerTest.java +++ b/server/protocols/jmap-draft/src/test/java/org/apache/james/jmap/event/ComputeMessageFastViewProjectionListenerTest.java @@ -86,11 +86,11 @@ class ComputeMessageFastViewProjectionListenerTest { MailboxSession mailboxSession; StoreMailboxManager mailboxManager; - private MessageManager inboxMessageManager; - private MessageManager otherBoxMessageManager; - private ComputeMessageFastViewProjectionListener listener; - private MessageIdManager messageIdManager; - private MemoryEventDeadLetters eventDeadLetters; + MessageManager inboxMessageManager; + MessageManager otherBoxMessageManager; + ComputeMessageFastViewProjectionListener listener; + MessageIdManager messageIdManager; + MemoryEventDeadLetters eventDeadLetters; @BeforeEach void setup() throws Exception { --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
