changeset 3092:fb433de39444 octave-forge

Removed old unnecessary comments in the source code.
author treichl
date Thu, 08 Feb 2007 21:12:17 +0000
parents cb60b4f0d4b0
children 020f7e3d7aa0
files main/odepkg/inst/odepkg_structure_check.m
diffstat 1 files changed, 0 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/main/odepkg/inst/odepkg_structure_check.m	Thu Feb 08 21:09:51 2007 +0000
+++ b/main/odepkg/inst/odepkg_structure_check.m	Thu Feb 08 21:12:17 2007 +0000
@@ -41,8 +41,6 @@
   end
 
   for vcntarg = 1:vint.len %# Run through the number of structure field names
-    %# vint.fld{vcntarg}
-    %# vret.(vint.fld{vcntarg})
 
     switch (vint.fld{vcntarg})
 
@@ -89,7 +87,6 @@
       case 'OutputFcn'
         if (isempty (vret.(vint.fld{vcntarg})) == true || ...
             isa (vret.(vint.fld{vcntarg}), 'function_handle') == true)
-          %# strcmp ('function handle', strrep (class (vret.(vint.fld{vcntarg})), '_', ' ')) == true)
         else
           vmsg = sprintf ('Unknown parameter "%s" or invalid parameter value "%s"\n', ...
             vint.fld{vcntarg}, char (vret.(vint.fld{vcntarg})));
@@ -185,7 +182,6 @@
         if (isempty (vret.(vint.fld{vcntarg})) == true || ...
             ismatrix (vret.(vint.fld{vcntarg})) == true || ...
             isa (vret.(vint.fld{vcntarg}), 'function_handle') == true)
-          %# strcmp ('function handle', strrep (class (vret.(vint.fld{vcntarg})), '_', ' ')) == true)
         else
           vmsg = sprintf ('Unknown parameter "%s" or invalid parameter value "%s"\n', ...
             vint.fld{vcntarg}, char (vret.(vint.fld{vcntarg})));