Skip to content

Commit cf1412b

Browse files
committed
Remove unused mostSignifikant
1 parent 2540cbb commit cf1412b

2 files changed

Lines changed: 1 addition & 9 deletions

File tree

src/vs/platform/markers/common/problemMatcher.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -62,12 +62,10 @@ export interface ProblemPattern {
6262

6363
loop?: boolean;
6464

65-
mostSignifikant?: boolean;
66-
6765
[key: string]: any;
6866
}
6967

70-
export let problemPatternProperties = ['file', 'message', 'location', 'line', 'column', 'endLine', 'endColumn', 'code', 'severity', 'loop', 'mostSignifikant'];
68+
export let problemPatternProperties = ['file', 'message', 'location', 'line', 'column', 'endLine', 'endColumn', 'code', 'severity', 'loop'];
7169

7270
export interface WatchingPattern {
7371
regexp: RegExp;

src/vs/workbench/parts/tasks/test/node/configuration.test.ts

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -229,11 +229,6 @@ class PatternBuilder {
229229
this.result.loop = value;
230230
return this;
231231
}
232-
233-
public mostSignifikant(value: boolean): PatternBuilder {
234-
this.result.mostSignifikant = value;
235-
return this;
236-
}
237232
}
238233

239234

@@ -1007,6 +1002,5 @@ suite('Tasks Configuration parsing tests', () => {
10071002
assert.strictEqual(actual.code, expected.code);
10081003
assert.strictEqual(actual.severity, expected.severity);
10091004
assert.strictEqual(actual.loop, expected.loop);
1010-
assert.strictEqual(actual.mostSignifikant, expected.mostSignifikant);
10111005
}
10121006
});

0 commit comments

Comments
 (0)