From a8d84a6decee3e63ac78b9137729689aac75253c Mon Sep 17 00:00:00 2001 From: Lucas Garron Date: Sun, 4 Apr 2021 01:20:59 -0700 Subject: [PATCH] [puzzles] Remove obsolete def compat comments. --- src/cubing/puzzles/implementations/2x2x2/index.ts | 2 +- src/cubing/puzzles/implementations/3x3x3/index.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/cubing/puzzles/implementations/2x2x2/index.ts b/src/cubing/puzzles/implementations/2x2x2/index.ts index 2ba1ac95d..a728e16f9 100644 --- a/src/cubing/puzzles/implementations/2x2x2/index.ts +++ b/src/cubing/puzzles/implementations/2x2x2/index.ts @@ -17,7 +17,7 @@ export const cube2x2x2: PuzzleLoader = { return (await import("./2x2x2.kpuzzle.svg")).default; }, pg: async () => { - return asyncGetPuzzleGeometry("2x2x2"); // TODO: def compat + return asyncGetPuzzleGeometry("2x2x2"); }, appearance: (stickering: ExperimentalStickering): Promise => cubeStickering(cube2x2x2, stickering), diff --git a/src/cubing/puzzles/implementations/3x3x3/index.ts b/src/cubing/puzzles/implementations/3x3x3/index.ts index f0f80bd85..e6700987c 100644 --- a/src/cubing/puzzles/implementations/3x3x3/index.ts +++ b/src/cubing/puzzles/implementations/3x3x3/index.ts @@ -26,7 +26,7 @@ export const cube3x3x3: PuzzleLoader = { return (await import("./3x3x3-ll.kpuzzle.svg")).default; }, pg: async () => { - return asyncGetPuzzleGeometry("3x3x3"); // TODO: def compat + return asyncGetPuzzleGeometry("3x3x3"); }, appearance: (stickering: ExperimentalStickering): Promise => cubeStickering(cube3x3x3, stickering),