Fix formatting in the dashboard
[nonrtric.git] / dashboard / webapp-backend / src / main / java / org / oransc / ric / portal / dashboard / portalapi / PortalSdkDecryptorAes.java
index 279f1dd..f62ea5f 100644 (file)
@@ -24,9 +24,9 @@ import org.onap.portalsdk.core.onboarding.util.CipherUtil;
 
 public class PortalSdkDecryptorAes implements IPortalSdkDecryptor {
 
-       @SuppressWarnings("deprecation")
-       public String decrypt(String cipherText) throws CipherUtilException {
-               return CipherUtil.decrypt(cipherText);
-       }
+    @SuppressWarnings("deprecation")
+    public String decrypt(String cipherText) throws CipherUtilException {
+        return CipherUtil.decrypt(cipherText);
+    }
 
 }