Skip to content

Commit

Permalink
remove a stray log statement
Browse files Browse the repository at this point in the history
  • Loading branch information
evanw committed Dec 9, 2023
1 parent f260285 commit 90989ec
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions internal/css_parser/css_decls_color.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ package css_parser
import (
"fmt"
"math"
"os"
"strconv"
"strings"

Expand Down Expand Up @@ -640,7 +639,6 @@ func parseColor(token css_ast.Token) (parsedColor, bool) {
return parsedColor{x: x, y: y, z: z, hex: a}, true

case "prophoto-rgb":
fmt.Fprintf(os.Stderr, "v012 %f %f %f\n", v0, v1, v2)
r, g, b := lin_prophoto(v0, v1, v2)
x, y, z := lin_prophoto_to_xyz(r, g, b)
x, y, z = d50_to_d65(x, y, z)
Expand Down

0 comments on commit 90989ec

Please sign in to comment.