diff libinterp/octave-value/ov-java.h @ 15791:49f5962fa20d

ov-java.h: is_map must return false, java object is not a struct. * ov-java.h (is_map): Change is_map to return false.
author Rik <rik@octave.org>
date Fri, 14 Dec 2012 12:15:47 -0800
parents 921912c92102
children d9b8333df5e4
line wrap: on
line diff
--- a/libinterp/octave-value/ov-java.h
+++ b/libinterp/octave-value/ov-java.h
@@ -147,7 +147,7 @@
 
   bool is_defined (void) const { return true; }
 
-  bool is_map (void) const { return true; }
+  bool is_map (void) const { return false; }
 
   bool is_java (void) const { return true; }