From 14b58e0cfd8f400ff40ee48e33313e70c3aece00 Mon Sep 17 00:00:00 2001 From: dcanar9 Date: Tue, 9 Aug 2022 13:46:12 -0700 Subject: [PATCH] Fixing typo WhiteSourceComponent (#401) * fixing typo in white source component * dummy commit --- pom.xml | 2 +- .../com/capitalone/dashboard/model/WhiteSourceComponent.java | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index db4f2f4..91fa24b 100644 --- a/pom.xml +++ b/pom.xml @@ -19,7 +19,7 @@ com.capitalone.dashboard core jar - 3.15.40 + 3.15.41 ${project.groupId}:${project.artifactId} Core package shared by API layer and Microservices https://github.com/Hygieia/hygieia-core diff --git a/src/main/java/com/capitalone/dashboard/model/WhiteSourceComponent.java b/src/main/java/com/capitalone/dashboard/model/WhiteSourceComponent.java index 88e4ef3..5b6f08f 100644 --- a/src/main/java/com/capitalone/dashboard/model/WhiteSourceComponent.java +++ b/src/main/java/com/capitalone/dashboard/model/WhiteSourceComponent.java @@ -11,7 +11,8 @@ public class WhiteSourceComponent extends CollectorItem { public static final String ORG_NAME = "orgName"; public static final String LOCAL_CONFIG = "localConfig"; - public boolean getLocalConfig(){return (Boolean) getOptions().get(LOCAL_CONFIG);} + + public Boolean getLocalConfig(){return (Boolean) getOptions().get(LOCAL_CONFIG);} public void setLocalConfig(Boolean b){getOptions().put(LOCAL_CONFIG, b);} public String getOrgName() {