chibenwa commented on code in PR #2405:
URL: https://github.com/apache/james-project/pull/2405#discussion_r1757143375


##########
examples/custom-james-assembly/src/main/java/org/apache/james/examples/CustomJamesServerMain.java:
##########
@@ -60,22 +61,29 @@ public class CustomJamesServerMain implements 
JamesServerMain {
         new MemoryMailQueueModule(),
         new TaskManagerModule(),
         new RawPostDequeueDecoratorModule(),
-        binder -> 
binder.bind(MailetContainerModule.DefaultProcessorsConfigurationSupplier.class)
-            .toInstance(BaseHierarchicalConfiguration::new));
+        binder -> binder.bind(
+                MailetContainerModule
+                    .DefaultProcessorsConfigurationSupplier.class
+            ).toInstance(BaseHierarchicalConfiguration::new));
 
     public static final Module CUSTOM_SERVER_AGGREGATE_MODULE = 
Modules.combine(
         CUSTOM_SERVER_MODULE,
         PROTOCOLS);
 
     public static void main(String[] args) throws Exception {
-        MemoryJamesConfiguration configuration = 
MemoryJamesConfiguration.builder()
+        MemoryJamesConfiguration configuration = MemoryJamesConfiguration
+            .builder()
             .useWorkingDirectoryEnvProperty()
             .build();
 
         JamesServerMain.main(GuiceJamesServer.forConfiguration(configuration)
             .combineWith(CUSTOM_SERVER_AGGREGATE_MODULE)
-            .combineWith(new UsersRepositoryModuleChooser(new 
MemoryUsersRepositoryModule())
-                
.chooseModules(configuration.getUsersRepositoryImplementation()))
+            .combineWith(new UsersRepositoryModuleChooser(
+                new MemoryUsersRepositoryModule()
+            )
+            .chooseModules(configuration
+                .getUsersRepositoryImplementation()
+            ))

Review Comment:
   Idem are those indent change needed?



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to