We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6235c28 commit 2ff8e12Copy full SHA for 2ff8e12
src/vs/base/browser/fastDomNode.ts
@@ -201,10 +201,6 @@ export class FastDomNode<T extends HTMLElement> {
201
this.domNode.setAttribute(name, value);
202
}
203
204
- public getAttribute(name: string): string {
205
- return this.domNode.getAttribute(name);
206
- }
207
-
208
public removeAttribute(name: string): void {
209
this.domNode.removeAttribute(name);
210
src/vs/base/common/async.ts
@@ -611,13 +611,6 @@ export class RunOnceScheduler {
611
612
613
614
- /**
615
- * Replace runner. If there is a runner already scheduled, the new runner will be called.
616
- */
617
- setRunner(runner: () => void): void {
618
- this.runner = runner;
619
620
621
/**
622
* Cancel previous runner (if any) & schedule a new runner.
623
*/
0 commit comments