Skip to content

Commit 636002c

Browse files
committed
cleanup
1 parent 86a2618 commit 636002c

File tree

2 files changed

+0
-2
lines changed

2 files changed

+0
-2
lines changed

src/util/projection.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ export class Projection {
1111
}
1212

1313
static parse(input: Projection | string | undefined | null): Projection | undefined {
14-
// in zoom-and-property function input could be an instance of Color class
1514
if (input instanceof Projection) {
1615
return input;
1716
}

src/validate/validate_projection.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@ export default function validateProjection(options: ValidateProjectionOptions) {
2626

2727
let errors = [];
2828
for (const key in projection) {
29-
console.log('KEY', key, projection[key])
3029
if (projSpec[key]) {
3130
errors = errors.concat(options.validateSpec({
3231
key,

0 commit comments

Comments
 (0)