changeset 27820:21e198a1f4a9

__unimplemented__.m: Remove deprecated warning for exifread. * __unimplemented__.m: exifread warning was coded in 2013. 6 years later, probably okay to remove.
author Rik <rik@octave.org>
date Fri, 13 Dec 2019 17:20:49 -0800
parents a2a5b75efdcf
children 44f1efe45d03
files scripts/help/__unimplemented__.m
diffstat 1 files changed, 3 insertions(+), 6 deletions(-) [+]
line wrap: on
line diff
--- a/scripts/help/__unimplemented__.m	Fri Dec 13 18:18:09 2019 -0500
+++ b/scripts/help/__unimplemented__.m	Fri Dec 13 17:20:49 2019 -0800
@@ -46,10 +46,6 @@
       txt = ["Basic video file support is provided in the video package.  ", ...
              "See @url{https://octave.sourceforge.io/video/}."];
 
-    case "exifread"
-      txt = ["exifread is deprecated.  " ...
-             "The functionality is available in the imfinfo function."];
-
     case "funm"
       txt = ["funm is not currently part of core Octave.  ", ...
              "See the linear-algebra package at ", ...
@@ -68,8 +64,8 @@
       txt = ["matlabrc is not implemented.  ", ...
              "Octave uses the file '.octaverc' instead."];
 
-    case {"ode113", "ode15i", "ode15s", "ode23s", "ode23t", "ode23tb"}
-      txt = ["Octave provides lsode and ode45 for solving differential equations. ", ...
+    case {"ode113", "ode23s", "ode23t", "ode23tb"}
+      txt = ["Octave provides lsode and ode15i, ode15s, ode23, and ode45 for solving differential equations. ", ...
              "For more information try @code{help lsode}, @code{help ode45}.  ", ...
              "Matlab-compatible ODE functions are provided by the odepkg ", ...
              "package.  See @url{https://octave.sourceforge.io/odepkg/}."];
@@ -1361,6 +1357,7 @@
   rlist = list;
 endfunction
 
+
 %!test
 %! str = __unimplemented__ ("no_name_function");
 %! assert (isempty (str));