From f73e1d96a5562d4d5d78f7c9f884300cdbb6d97d Mon Sep 17 00:00:00 2001 From: Eemeli Aro Date: Sun, 7 Jul 2024 16:42:59 +0300 Subject: [PATCH] chore: Drop unused Collection.maxFlowStringSingleLineLength (see #522, closes #421) --- src/nodes/Collection.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/nodes/Collection.ts b/src/nodes/Collection.ts index 40ab0d9a..bb40d089 100644 --- a/src/nodes/Collection.ts +++ b/src/nodes/Collection.ts @@ -45,8 +45,6 @@ export const isEmptyPath = ( (typeof path === 'object' && !!path[Symbol.iterator]().next().done) export abstract class Collection extends NodeBase { - static maxFlowStringSingleLineLength = 60 - schema: Schema | undefined; declare [NODE_TYPE]: symbol