fix indent

This commit is contained in:
Fedor Indutny 2021-07-25 11:47:04 -07:00 committed by Chris Eager
parent cf8887bb5a
commit e6712937ca
1 changed files with 2 additions and 2 deletions

View File

@ -574,8 +574,8 @@ public class WhisperServerService extends Application<WhisperServerConfiguration
new StickerController(rateLimiters, config.getCdnConfiguration().getAccessKey(), config.getCdnConfiguration().getAccessSecret(), config.getCdnConfiguration().getRegion(), config.getCdnConfiguration().getBucket())
);
for (Object controller : commonControllers) {
environment.jersey().register(controller);
webSocketEnvironment.jersey().register(controller);
environment.jersey().register(controller);
webSocketEnvironment.jersey().register(controller);
}
WebSocketEnvironment<Account> provisioningEnvironment = new WebSocketEnvironment<>(environment, webSocketEnvironment.getRequestLog(), 60000);