Skip to content

Commit

Permalink
[puzzles] Remove obsolete def compat comments.
Browse files Browse the repository at this point in the history
  • Loading branch information
lgarron committed Apr 4, 2021
1 parent e319cb4 commit a8d84a6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/cubing/puzzles/implementations/2x2x2/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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<PuzzleAppearance> =>
cubeStickering(cube2x2x2, stickering),
Expand Down
2 changes: 1 addition & 1 deletion src/cubing/puzzles/implementations/3x3x3/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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<PuzzleAppearance> =>
cubeStickering(cube3x3x3, stickering),
Expand Down

0 comments on commit a8d84a6

Please sign in to comment.