Skip to content

Commit

Permalink
fix: remove unused class and fix compilation errors (#162)
Browse files Browse the repository at this point in the history
* fix: remove unused class and fix compilation errors

- TypeManager now an abstract class

* fix: GcsDataSinkFactory test compilator error

* chore: DEPENDENCIES

* refactor: updating GcsDataSinkFactoryTest with object instead of mock

* fix: removed unused dependencies
  • Loading branch information
man8pr authored Apr 15, 2024
1 parent 2d90031 commit 82817f7
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 327 deletions.
1 change: 1 addition & 0 deletions DEPENDENCIES
Original file line number Diff line number Diff line change
Expand Up @@ -224,6 +224,7 @@ maven/mavencentral/org.eclipse.edc/jersey-core/0.6.1-SNAPSHOT, Apache-2.0, appro
maven/mavencentral/org.eclipse.edc/jersey-providers-lib/0.6.1-SNAPSHOT, Apache-2.0, approved, technology.edc
maven/mavencentral/org.eclipse.edc/jetty-core/0.6.1-SNAPSHOT, Apache-2.0, approved, technology.edc
maven/mavencentral/org.eclipse.edc/json-ld-spi/0.6.1-SNAPSHOT, Apache-2.0, approved, technology.edc
maven/mavencentral/org.eclipse.edc/json-lib/0.6.1-SNAPSHOT, Apache-2.0, approved, technology.edc
maven/mavencentral/org.eclipse.edc/junit-base/0.6.1-SNAPSHOT, Apache-2.0, approved, technology.edc
maven/mavencentral/org.eclipse.edc/junit/0.6.1-SNAPSHOT, Apache-2.0, approved, technology.edc
maven/mavencentral/org.eclipse.edc/jwt-spi/0.6.1-SNAPSHOT, Apache-2.0, approved, technology.edc
Expand Down

This file was deleted.

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@
package org.eclipse.edc.connector.dataplane.gcp.storage;

import org.eclipse.edc.gcp.storage.GcsStoreSchema;
import org.eclipse.edc.json.JacksonTypeManager;
import org.eclipse.edc.spi.monitor.Monitor;
import org.eclipse.edc.spi.security.Vault;
import org.eclipse.edc.spi.types.TypeManager;
import org.eclipse.edc.spi.types.domain.DataAddress;
import org.eclipse.edc.spi.types.domain.transfer.DataFlowStartMessage;
import org.junit.jupiter.api.Test;
Expand All @@ -40,7 +40,7 @@ class GcsDataSinkFactoryTest {
mock(ExecutorService.class),
mock(Monitor.class),
mock(Vault.class),
new TypeManager()
new JacksonTypeManager()
);

@Test
Expand Down

0 comments on commit 82817f7

Please sign in to comment.