From 1a3c144e8028fab740b4d9287c5ece0b39d55337 Mon Sep 17 00:00:00 2001 From: Alexander Zhirov Date: Wed, 7 Jan 2026 13:51:45 +0300 Subject: [PATCH] =?UTF-8?q?=D0=A3=D0=B1=D1=80=D0=B0=D0=BD=D1=8B=20=D0=BF?= =?UTF-8?q?=D1=80=D0=BE=D0=B2=D0=B5=D1=80=D0=BA=D0=B8.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- source/ncui/engine/ncui.d | 14 +------------- 1 file changed, 1 insertion(+), 13 deletions(-) diff --git a/source/ncui/engine/ncui.d b/source/ncui/engine/ncui.d index c31073b..b43e097 100644 --- a/source/ncui/engine/ncui.d +++ b/source/ncui/engine/ncui.d @@ -100,16 +100,7 @@ private: public: this(const SessionConfig config = SessionConfig.init) { - try - { - _session = new Session(config); - } - catch (Exception e) - { - error("Failed to initialize the session: ", e.msg); - exit(EXIT_FAILURE); - } - + _session = new Session(config); _context = ScreenContext(_session); } @@ -134,9 +125,6 @@ public: // Завершить сессию ncurses. _session.close(); - - info("Engine successfully stopped"); - return _result; } }