Skip to content

Commit

Permalink
PR Comments
Browse files Browse the repository at this point in the history
  • Loading branch information
Sumanth K B committed Sep 28, 2023
1 parent 8a26864 commit f6b22c8
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion src/LCT.PackageIdentifier/NugetDevDependencyParser.cs
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ public static NugetDevDependencyParser Instance
}
}

public static List<Container> Parse(string configFile)
public List<Container> Parse(string configFile)
{
List<Container> containerList = new();

Expand Down
2 changes: 1 addition & 1 deletion src/LCT.PackageIdentifier/NugetProcessor.cs
Original file line number Diff line number Diff line change
Expand Up @@ -633,7 +633,7 @@ private static string ReferenceTagDetailsForPackageReference(XmlNode childNode,
private static List<NugetPackage> ParseAssetFile(string configFile)
{
NugetDevDependencyParser nugetDevDependencyParser = NugetDevDependencyParser.Instance;
List<Container> containers = NugetDevDependencyParser.Parse(configFile);
List<Container> containers = nugetDevDependencyParser.Parse(configFile);
return ConvertContainerAsNugetPackage(containers, configFile);
}

Expand Down
12 changes: 6 additions & 6 deletions src/TestUtilities/appSettingsSW360IntegrationTest.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
{
"FossologyURL": "http://md2pdvnc.ad001.siemens.net:8096",
"FossologyURL": "",
"RemoveDevDependency": true,
"SW360AuthTokenType": "Token",
"SW360ProjectID": "0d0e23f6bccb4072be91b5a3462414ad",
"SW360ProjectName": "Test",
"SW360URL": "http://md2pdvnc.ad001.siemens.net:8095",
"SW360URL": "",
"JfrogNugetDestRepoName": "nuget-test",
"JfrogNpmDestRepoName": "npm-test",
"JfrogMavenDestRepoName": "maven-test",
"ArtifactoryUploadApiKey": "AKCp8nyNrX7MxdivMy7ka2CwdLfQERMcbJ4Y6icHoQJQA6ZMjYJk4nLTrWs5TCeWXmzz8ya94",
"ArtifactoryUploadUser": "[email protected]",
"JfrogApi": "https://siemens.jfrog.io/artifactory",
"SW360AuthTokenValue": "mlhPtOTmz7cAG7deyyDh"
"ArtifactoryUploadUser": "",
"ArtifactoryUploadApiKey": "",
"JfrogApi": "",
"SW360AuthTokenValue": ""
}
2 changes: 1 addition & 1 deletion src/UnitTestUtilities/appsettingsUnitTest.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"SW360URL": "http://localhost:8090",
"FossologyURL": "http://localhost:8091",
"JFrogURL": "https://siemens.jfrog.io/artifactory"
"JFrogURL": ""
}

0 comments on commit f6b22c8

Please sign in to comment.