From b97237b513e09683a3862653f1b14e7d48a8dbe1 Mon Sep 17 00:00:00 2001 From: UbitUmarov Date: Sat, 8 Feb 2020 16:31:23 +0000 Subject: [PATCH] missed another file --- .../ScriptEngine/Shared/Api/Implementation/LSL_Api.cs | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs b/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs index 8815a28b43..561458713e 100644 --- a/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs +++ b/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs @@ -18218,14 +18218,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api Notecard nc = new Notecard(); nc.lastRef = DateTime.Now; - try - { - nc.text = SLUtil.ParseNotecardToArray(text); - } - catch(SLUtil.NotANotecardFormatException) - { - nc.text = new string[0]; - } + nc.text = SLUtil.ParseNotecardToArray(text); m_Notecards[assetID] = nc; } }