From c5ce769651ab9b920c8df99fd1d92c85f3d58e23 Mon Sep 17 00:00:00 2001
From: Daniel Hornung <d.hornung@indiscale.com>
Date: Fri, 4 Feb 2022 10:02:00 +0100
Subject: [PATCH] STY: Fixed too long line.

---
 src/Entity.m | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/src/Entity.m b/src/Entity.m
index 983b6a7..11fdf5f 100644
--- a/src/Entity.m
+++ b/src/Entity.m
@@ -153,7 +153,8 @@ classdef Entity < handle
         name = prop{1}.name;
         if isfield(result, name)
           error("caosdb:NameCollision", ...
-                "Name collision: Two or more properties of the same name, cannot pack into struct.");
+                ["Name collision: Two or more properties of the same name, " ...
+                 "cannot pack into struct."]);
         end
         result = setfield(result, name, prop{1});
       end
-- 
GitLab