From a70aefe48dec13971b4a06ebeb05b1c7d90399dc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Sj=C3=B6lund?= Date: Thu, 12 Jan 2017 13:23:03 +0100 Subject: [PATCH] Remove unused function --- Compiler/SimCode/SimCodeUtil.mo | 8 -------- Compiler/Template/SimCodeTV.mo | 5 ----- 2 files changed, 13 deletions(-) diff --git a/Compiler/SimCode/SimCodeUtil.mo b/Compiler/SimCode/SimCodeUtil.mo index c106bc1cdce..f52eac80f59 100644 --- a/Compiler/SimCode/SimCodeUtil.mo +++ b/Compiler/SimCode/SimCodeUtil.mo @@ -117,14 +117,6 @@ import ZeroCrossings; protected constant String UNDERLINE = "========================================"; -public function appendLists - input list inEqn1; - input list inEqn2; - output list outEqn; -algorithm - outEqn := listAppend(inEqn1, inEqn2); -end appendLists; - protected function compareEqSystems input SimCode.SimEqSystem eq1; input SimCode.SimEqSystem eq2; diff --git a/Compiler/Template/SimCodeTV.mo b/Compiler/Template/SimCodeTV.mo index 77544aa334d..2fed6c49963 100644 --- a/Compiler/Template/SimCodeTV.mo +++ b/Compiler/Template/SimCodeTV.mo @@ -793,11 +793,6 @@ package SimCodeFunction end SimCodeFunction; package SimCodeUtil - function appendLists - input list inEqn1; - input list inEqn2; - output list outEqn; - end appendLists; function functionInfo input SimCodeFunction.Function fn;