refactor(pipeline_spec): remove dead code
This commit is contained in:
parent
2074cc1ca9
commit
c141cbe865
|
@ -118,16 +118,6 @@ class MockStep extends CompileStep {
|
|||
}
|
||||
}
|
||||
|
||||
class LoggingStep extends CompileStep {
|
||||
logs:List;
|
||||
constructor(logs) {
|
||||
this.logs = logs;
|
||||
}
|
||||
process(parent:CompileElement, current:CompileElement, control:CompileControl) {
|
||||
ListWrapper.push(this.logs, {'parent':parent, 'current':current});
|
||||
}
|
||||
}
|
||||
|
||||
function logEntry(log, parent, current) {
|
||||
var parentId = '';
|
||||
if (isPresent(parent)) {
|
||||
|
|
Loading…
Reference in New Issue