From 8bad710287b317e4174864e0f00b80d85411cb84 Mon Sep 17 00:00:00 2001 From: Eric Amodio Date: Mon, 29 Mar 2021 02:28:42 -0400 Subject: [PATCH] Fixes build warning --- src/git/remotes/gitea.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/git/remotes/gitea.ts b/src/git/remotes/gitea.ts index e761cff..9498a3a 100644 --- a/src/git/remotes/gitea.ts +++ b/src/git/remotes/gitea.ts @@ -123,7 +123,7 @@ export class GiteaRemote extends RemoteProvider { return `${this.baseUrl}/commit/${sha}`; } - protected getUrlForComparison(ref1: string, ref2: string, notation: '..' | '...'): string { + protected getUrlForComparison(ref1: string, ref2: string, _notation: '..' | '...'): string { return `${this.baseUrl}/compare/${ref1}...${ref2}`; }