build fix

This commit is contained in:
Eugene Pankov
2018-08-09 13:18:17 -07:00
parent 6ee5275981
commit 0e86894d81
2 changed files with 0 additions and 7 deletions

View File

@@ -30,12 +30,6 @@ export abstract class BaseSession {
get closed$ (): Observable<void> { return this.closed }
get destroyed$ (): Observable<void> { return this.destroyed }
constructor () {
this.output$ = this.output.asObservable()
this.closed$ = this.closed.asObservable()
this.destroyed$ = this.destroyed.asObservable()
}
emitOutput (data: string) {
if (!this.initialDataBufferReleased) {
this.initialDataBuffer += data

View File

@@ -29,7 +29,6 @@ export class TerminalService {
async reloadShells () {
this.shells = new AsyncSubject<IShell[]>()
this.shells$ = this.shells.asObservable()
let shellLists = await Promise.all(this.config.enabledServices(this.shellProviders).map(x => x.provide()))
this.shells.next(shellLists.reduce((a, b) => a.concat(b)))
this.shells.complete()