mirror of
https://github.com/arduino/arduino-ide.git
synced 2025-11-10 18:59:28 +00:00
16 lines
468 B
TypeScript
16 lines
468 B
TypeScript
import { injectable } from 'inversify';
|
|
import { ProblemContribution } from '@theia/markers/lib/browser/problem/problem-contribution';
|
|
import { ProblemStat } from '@theia/markers/lib/browser/problem/problem-manager';
|
|
|
|
@injectable()
|
|
export class SilentProblemContribution extends ProblemContribution {
|
|
|
|
async initializeLayout(): Promise<void> {
|
|
// await this.openView();
|
|
}
|
|
|
|
protected setStatusBarElement(problemStat: ProblemStat) {
|
|
|
|
}
|
|
}
|