Skip to content

Commit

Permalink
refactor: Remove unused MonitoringDataStorage (#2514)
Browse files Browse the repository at this point in the history
  • Loading branch information
tenthe authored Mar 7, 2024
1 parent 84429e7 commit deaa100
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 114 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,6 @@ public interface INoSqlStorage {

IUserStorage getUserStorageAPI();

IPipelineMonitoringDataStorage getMonitoringDataStorageApi();

INotificationStorage getNotificationStorageApi();

IPipelineCategoryStorage getPipelineCategoryStorageApi();
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,6 @@
import org.apache.streampipes.storage.api.IPipelineElementConnectionStorage;
import org.apache.streampipes.storage.api.IPipelineElementDescriptionStorage;
import org.apache.streampipes.storage.api.IPipelineElementTemplateStorage;
import org.apache.streampipes.storage.api.IPipelineMonitoringDataStorage;
import org.apache.streampipes.storage.api.IPipelineStorage;
import org.apache.streampipes.storage.api.ISpCoreConfigurationStorage;
import org.apache.streampipes.storage.api.IUserActivationTokenStorage;
Expand All @@ -68,7 +67,6 @@
import org.apache.streampipes.storage.couchdb.impl.FileMetadataStorageImpl;
import org.apache.streampipes.storage.couchdb.impl.GenericStorageImpl;
import org.apache.streampipes.storage.couchdb.impl.ImageStorageImpl;
import org.apache.streampipes.storage.couchdb.impl.MonitoringDataStorageImpl;
import org.apache.streampipes.storage.couchdb.impl.NotificationStorageImpl;
import org.apache.streampipes.storage.couchdb.impl.PasswordRecoveryTokenImpl;
import org.apache.streampipes.storage.couchdb.impl.PermissionStorageImpl;
Expand Down Expand Up @@ -126,11 +124,6 @@ public IUserStorage getUserStorageAPI() {
return new UserStorage();
}

@Override
public IPipelineMonitoringDataStorage getMonitoringDataStorageApi() {
return new MonitoringDataStorageImpl();
}

@Override
public INotificationStorage getNotificationStorageApi() {
return new NotificationStorageImpl();
Expand Down

This file was deleted.

0 comments on commit deaa100

Please sign in to comment.