From 0d46d1684d8bb3b9313feafd28ab5481a8a3b7e0 Mon Sep 17 00:00:00 2001 From: Sarah Gilmore Date: Fri, 10 Nov 2023 16:59:18 -0500 Subject: [PATCH] Don't set ToolboxMatlabPath post construction --- matlab/tools/packageMatlabInterface.m | 5 ----- 1 file changed, 5 deletions(-) diff --git a/matlab/tools/packageMatlabInterface.m b/matlab/tools/packageMatlabInterface.m index 7567acfea689f..553733b6a0a88 100644 --- a/matlab/tools/packageMatlabInterface.m +++ b/matlab/tools/packageMatlabInterface.m @@ -41,13 +41,8 @@ identifier = "ARROW-MATLAB-TOOLBOX"; opts = matlab.addons.toolbox.ToolboxOptions(toolboxFolder, identifier); -disp("ToolboxMatlabPath Post Construction: " + opts.ToolboxMatlabPath); - opts.ToolboxName = "MATLAB Interface to Arrow"; opts.ToolboxVersion = toolboxVersion; -opts.ToolboxMatlabPath = toolboxFolder; - -disp("ToolboxMatlabPath Post Set: " + opts.ToolboxMatlabPath); % Set the SupportedPlatforms opts.SupportedPlatforms.Win64 = true;