mirror of
https://github.com/arduino/arduino-ide.git
synced 2025-11-09 18:38:33 +00:00
12 lines
309 B
TypeScript
12 lines
309 B
TypeScript
import { injectable } from 'inversify';
|
|
import { ProblemContribution } from '@theia/markers/lib/browser/problem/problem-contribution';
|
|
|
|
@injectable()
|
|
export class SilentProblemContribution extends ProblemContribution {
|
|
|
|
async initializeLayout(): Promise<void> {
|
|
// await this.openView();
|
|
}
|
|
|
|
}
|