Skip to content

Commit

Permalink
fix: remove deprecation notice
Browse files Browse the repository at this point in the history
  • Loading branch information
amfage committed Dec 10, 2024
1 parent cb09619 commit ce3c0f1
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/commands/stac-setup/stac.setup.ts
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,6 @@ export function slugFromMetadata(metadata: SlugMetadata): string {
export function checkGsd(suppliedGsd: string): string {
let gsd = suppliedGsd;
if (suppliedGsd.endsWith('m')) {
logger.warn(`${suppliedGsd} supplied as GSD; future supported format will require numerical value only.`);
gsd = suppliedGsd.slice(0, -1);
}
if (isNaN(Number(gsd))) {
Expand Down

0 comments on commit ce3c0f1

Please sign in to comment.