diff libinterp/octave-value/ov-java.h @ 23578:7b47b7c2d6c7

maint: Deprecate is_java and replace with isjava. * ov.h (is_java): Use OCTAVE_DEPRECATED macro around function. * ov.h (isjava): New function. * variables.cc, ov-base.h, ov-java.cc, ov-java.h: Replace occurrences of is_java with isjava.
author Rik <rik@octave.org>
date Mon, 12 Jun 2017 13:41:35 -0700
parents 314d980bee93
children 7ed6b258db91
line wrap: on
line diff
--- a/libinterp/octave-value/ov-java.h	Sun Jun 11 22:14:09 2017 -0700
+++ b/libinterp/octave-value/ov-java.h	Mon Jun 12 13:41:35 2017 -0700
@@ -62,7 +62,7 @@
 
   bool is_map (void) const { return false; }
 
-  bool is_java (void) const { return true; }
+  bool isjava (void) const { return true; }
 
   string_vector map_keys (void) const;