From 62c4bc9f774b1ce0c3949da914486a531c9cf0cd Mon Sep 17 00:00:00 2001 From: Daniel <d.hornung@indiscale.com> Date: Mon, 13 Sep 2021 10:36:50 +0200 Subject: [PATCH] MAINT: Removed old commented code (for temp file removal). --- test/cleanup.m | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/test/cleanup.m b/test/cleanup.m index b98266b..b430653 100644 --- a/test/cleanup.m +++ b/test/cleanup.m @@ -18,17 +18,7 @@ %% Clean up CaosDB (remove everything with ID > 99) function cleanup() - % if nargin < 1 - % filenames = {} - % end c = Caosdb(); ids = caosdb_get_ids(c.query('FIND ENTITY WITH ID > 99')); result = c.delete_by_id(ids); - - % - % If FILENAMES is given, it must be a cell string array with filenames to delete. - % for filename = filenames - % filename = filename{1}; - % fsdelete(filename) % TODO - % end end -- GitLab