Skip to content

Commit 2a0e376

Browse files
committed
comment out decorators
1 parent 005e493 commit 2a0e376

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/core/graph.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import {GraphDebugLogger, Log} from "./util";
1010

1111
// TODO: find a way to to this with decorators.
1212
// eslint-disable-next-line @typescript-eslint/explicit-function-return-type, @typescript-eslint/no-explicit-any
13-
const debugLoggerDecorator = (target: any, context: ClassMethodDecoratorContext) => {
13+
/* const debugLoggerDecorator = (target: any, context: ClassMethodDecoratorContext) => {
1414
if (context.kind === "method") {
1515
// eslint-disable-next-line @typescript-eslint/no-explicit-any
1616
return function (this: any, ...args: unknown[]): any {
@@ -20,7 +20,7 @@ const debugLoggerDecorator = (target: any, context: ClassMethodDecoratorContext)
2020
return target.call(this, ...args);
2121
}
2222
}
23-
}
23+
} */
2424

2525
declare global {
2626
// eslint-disable-next-line no-var

0 commit comments

Comments
 (0)