Formatting Code base with ktlint
[ccsdk/cds.git] / ms / sdclistener / application / src / main / java / org / onap / ccsdk / cds / sdclistener / client / SdcListenerAuthClientInterceptor.java
index 6f782d1..5389dcc 100644 (file)
@@ -43,7 +43,7 @@ public class SdcListenerAuthClientInterceptor implements ClientInterceptor {
                                                                CallOptions callOptions, Channel channel) {
         Key<String> authHeader = Key.of("Authorization", Metadata.ASCII_STRING_MARSHALLER);
         return new ForwardingClientCall.SimpleForwardingClientCall<ReqT, RespT>(
-            channel.newCall(methodDescriptor, callOptions)) {
+                channel.newCall(methodDescriptor, callOptions)) {
             @Override
             public void start(Listener<RespT> responseListener, Metadata headers) {
                 headers.put(authHeader, basicAuth);
@@ -51,4 +51,5 @@ public class SdcListenerAuthClientInterceptor implements ClientInterceptor {
             }
         };
     }
+
 }