diff options
author | Matthew Newhook <matthew@zeroc.com> | 2015-01-13 15:33:16 -0330 |
---|---|---|
committer | Matthew Newhook <matthew@zeroc.com> | 2015-01-13 15:33:16 -0330 |
commit | 024b7ad85bffcaa9f0f4b98dedf04ee45b4ccb9e (patch) | |
tree | d1504d25f3c1112996d02aed5716f7898334f1a9 /java/demo/Ice/applet/HelloApplet.java | |
parent | Fix bug with oneway invocations in the android hello demo. (diff) | |
download | ice-024b7ad85bffcaa9f0f4b98dedf04ee45b4ccb9e.tar.bz2 ice-024b7ad85bffcaa9f0f4b98dedf04ee45b4ccb9e.tar.xz ice-024b7ad85bffcaa9f0f4b98dedf04ee45b4ccb9e.zip |
Fix another bug with hello demos.
Diffstat (limited to 'java/demo/Ice/applet/HelloApplet.java')
-rw-r--r-- | java/demo/Ice/applet/HelloApplet.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/java/demo/Ice/applet/HelloApplet.java b/java/demo/Ice/applet/HelloApplet.java index 244b7debfc0..00b05c20dba 100644 --- a/java/demo/Ice/applet/HelloApplet.java +++ b/java/demo/Ice/applet/HelloApplet.java @@ -395,7 +395,7 @@ public class HelloApplet extends JApplet public boolean isOneway() { - return this == ONEWAY || this == ONEWAY_SECURE; + return this == ONEWAY || this == ONEWAY_SECURE || this == DATAGRAM; } public boolean isBatch() |