Commit 1f309f6e authored by jashaikh's avatar jashaikh

Added Jacoco Code Coverage For Sonar.

parent 075b5fd5
......@@ -47,8 +47,6 @@ public class AzureAppConfigService {
public String writeValueByKey(String key, String value) {
try {
LOGGER.info("Writing Single Value by key");
if(key == null && value == null)
throw new Exception("Key and Value cannot be null");
ConfigurationSetting configurationSetting = configurationClient.setConfigurationSetting(key, null, value);
return configurationSetting.getValue();
} catch (Exception e) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment