From: Chocobozzz Date: Fri, 8 Oct 2021 09:22:22 +0000 (+0200) Subject: Remove unused comments X-Git-Tag: v3.4.1~10 X-Git-Url: https://git.immae.eu/?a=commitdiff_plain;h=9da443f374d9f845331435ce3423ad16e5ac331d;p=github%2FChocobozzz%2FPeerTube.git Remove unused comments --- diff --git a/server/helpers/regexp.ts b/server/helpers/regexp.ts index cfc2be488..257054cea 100644 --- a/server/helpers/regexp.ts +++ b/server/helpers/regexp.ts @@ -4,7 +4,6 @@ function regexpCapture (str: string, regex: RegExp, maxIterations = 100) { let m: RegExpExecArray let i = 0 - // tslint:disable:no-conditional-assignment while ((m = regex.exec(str)) !== null && i < maxIterations) { // This is necessary to avoid infinite loops with zero-width matches if (m.index === regex.lastIndex) { diff --git a/server/initializers/migrations/0135-video-channel-actor.ts b/server/initializers/migrations/0135-video-channel-actor.ts index 3f620dfa3..6989e1cbb 100644 --- a/server/initializers/migrations/0135-video-channel-actor.ts +++ b/server/initializers/migrations/0135-video-channel-actor.ts @@ -56,7 +56,6 @@ async function up (utils: { } { - // tslint:disable:no-trailing-whitespace const query1 = ` INSERT INTO "actor" diff --git a/shared/extra-utils/miscs/sql-command.ts b/shared/extra-utils/miscs/sql-command.ts index 80c8cd271..bedb3349b 100644 --- a/shared/extra-utils/miscs/sql-command.ts +++ b/shared/extra-utils/miscs/sql-command.ts @@ -50,7 +50,6 @@ export class SQLCommand extends AbstractCommand { async countVideoViewsOf (uuid: string) { const seq = this.getSequelize() - // tslint:disable const query = 'SELECT SUM("videoView"."views") AS "total" FROM "videoView" ' + `INNER JOIN "video" ON "video"."id" = "videoView"."videoId" WHERE "video"."uuid" = '${uuid}'`