Skip to content

Commit

Permalink
refactor: Remove unused code (#3078)
Browse files Browse the repository at this point in the history
* refactor: Remove unused code

* refactor(#3078): Fix linting
  • Loading branch information
tenthe authored Jul 31, 2024
1 parent 7f39690 commit b14ef78
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 15 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,7 @@
import { Injectable } from '@angular/core';
import { HttpClient } from '@angular/common/http';
import { Observable } from 'rxjs';
import {
PipelineMonitoringInfo,
SpLogEntry,
SpMetricsEntry,
} from '../model/gen/streampipes-model';
import { SpLogEntry, SpMetricsEntry } from '../model/gen/streampipes-model';
import { PlatformServicesCommons } from './commons.service';
import { map } from 'rxjs/operators';
import { AbstractMonitoringService } from './abstract-monitoring.service';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,12 +55,6 @@ export class AdapterService {
);
}

deleteAdapterDescription(adapterId: string): Observable<any> {
return this.http.delete(
`${this.connectPath}/master/description/${adapterId}`,
);
}

requestAdapterDescriptions(path: string): Observable<AdapterDescription[]> {
return this.http.get(this.connectPath + path).pipe(
map(response => {
Expand Down Expand Up @@ -148,10 +142,6 @@ export class AdapterService {
);
}

getAssetUrl(appId) {
return `${this.connectPath}/master/description/${appId}/assets`;
}

private get baseUrl() {
return '/streampipes-backend';
}
Expand Down

0 comments on commit b14ef78

Please sign in to comment.