Skip to content
This repository has been archived by the owner on Oct 2, 2023. It is now read-only.

Commit

Permalink
Fixing typo WhiteSourceComponent (#401)
Browse files Browse the repository at this point in the history
* fixing typo in white source component

* dummy commit
  • Loading branch information
dcanar9 authored Aug 9, 2022
1 parent 64a78dd commit 14b58e0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
<groupId>com.capitalone.dashboard</groupId>
<artifactId>core</artifactId>
<packaging>jar</packaging>
<version>3.15.40</version>
<version>3.15.41</version>
<name>${project.groupId}:${project.artifactId}</name>
<description>Core package shared by API layer and Microservices</description>
<url>https://github.com/Hygieia/hygieia-core</url>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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() {
Expand Down

0 comments on commit 14b58e0

Please sign in to comment.