httpResp.subscribe({
next: this.someMethod.bind(this)
})
Sonar ("Deprecated APIs should not be used" rule) flags the use of subscribe with: "subscribe is deprecated: Use an observer instead of a complete callback"
This is in regards with the RXJS6 changes where the use of subscribe(callback) is considered deprecated. I've changed the call as stated here https://stackoverflow.com/a/55472361 but I still get the line flagged. Does anyone know why?