From 159933ca0d25a504a6d9fef5beab93705ff74b1b Mon Sep 17 00:00:00 2001 From: Mikhalkovich Stanislav Date: Mon, 17 Jun 2024 10:32:18 +0300 Subject: [PATCH] =?UTF-8?q?=D0=98=D1=81=D0=BF=D1=80=D0=B0=D0=B2=D0=BB?= =?UTF-8?q?=D0=B5=D0=BD=D0=B8=D0=B5=20ToLines?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- bin/Lib/PABCSystem.pas | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/Lib/PABCSystem.pas b/bin/Lib/PABCSystem.pas index a6e235f34..fe0b37c31 100644 --- a/bin/Lib/PABCSystem.pas +++ b/bin/Lib/PABCSystem.pas @@ -13758,7 +13758,7 @@ end; /// Преобразует многострочную строку в массив строк function ToLines(Self: string): array of string; extensionmethod; begin - Result := Self.Split(|NewLine|, System.StringSplitOptions.RemoveEmptyEntries); + Result := Self.Split(|NewLine|, System.StringSplitOptions.None); end; procedure PassSpaces(var s: string; var from: integer);