Skip to content

Commit

Permalink
removed unused dependency and cleaned test
Browse files Browse the repository at this point in the history
  • Loading branch information
pgarus97 committed Sep 7, 2022
1 parent 6dab3ca commit 0b8add8
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 10 deletions.
5 changes: 0 additions & 5 deletions core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -101,11 +101,6 @@
<artifactId>commons-codec</artifactId>
<version>1.15</version>
</dependency>
<dependency>
<groupId>com.googlecode.json-simple</groupId>
<artifactId>json-simple</artifactId>
<version>1.1.1</version>
</dependency>
<dependency>
<groupId>org.apache.velocity</groupId>
<artifactId>velocity-engine-core</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,6 @@ public class OrtReaderTests {
Application application;

public OrtReaderTests() {

// configuration settings
Map<String, String> configuration = new HashMap<String, String>();
configuration.put("token", "testToken");

ModelFactory modelFactory = new ModelFactoryImpl();

Expand All @@ -40,7 +36,7 @@ public OrtReaderTests() {
pr.setModelFactory(modelFactory);
pr.setInputStreamFactory(new FileInputStreamFactory());
pr.readInventory("ort", "src/test/resources/analyzer-result.json", this.application, UsagePattern.DYNAMIC_LINKING, "ort",
configuration);
null);
}

@Test
Expand Down

0 comments on commit 0b8add8

Please sign in to comment.