提交 cf1412bb 编写于 作者: D Dirk Baeumer

Remove unused mostSignifikant

上级 2540cbb6
......@@ -62,12 +62,10 @@ export interface ProblemPattern {
loop?: boolean;
mostSignifikant?: boolean;
[key: string]: any;
}
export let problemPatternProperties = ['file', 'message', 'location', 'line', 'column', 'endLine', 'endColumn', 'code', 'severity', 'loop', 'mostSignifikant'];
export let problemPatternProperties = ['file', 'message', 'location', 'line', 'column', 'endLine', 'endColumn', 'code', 'severity', 'loop'];
export interface WatchingPattern {
regexp: RegExp;
......
......@@ -229,11 +229,6 @@ class PatternBuilder {
this.result.loop = value;
return this;
}
public mostSignifikant(value: boolean): PatternBuilder {
this.result.mostSignifikant = value;
return this;
}
}
......@@ -1007,6 +1002,5 @@ suite('Tasks Configuration parsing tests', () => {
assert.strictEqual(actual.code, expected.code);
assert.strictEqual(actual.severity, expected.severity);
assert.strictEqual(actual.loop, expected.loop);
assert.strictEqual(actual.mostSignifikant, expected.mostSignifikant);
}
});
\ No newline at end of file
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册