diff options
author | Benoit Foucher <benoit@zeroc.com> | 2015-02-17 11:50:58 +0100 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2015-02-17 11:50:58 +0100 |
commit | 67e9afa30c73daa260343d4c3638610f4c70980a (patch) | |
tree | ca5ba63f90d97e18f51238f3818294e3a5e3d3a4 /java/demo/Ice/optional/Client.java | |
parent | IceLocatorDiscovery Makefile fix (diff) | |
download | ice-67e9afa30c73daa260343d4c3638610f4c70980a.tar.bz2 ice-67e9afa30c73daa260343d4c3638610f4c70980a.tar.xz ice-67e9afa30c73daa260343d4c3638610f4c70980a.zip |
Fixed ICE-6269: tolerate null values for structs and enums
Diffstat (limited to 'java/demo/Ice/optional/Client.java')
-rw-r--r-- | java/demo/Ice/optional/Client.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/java/demo/Ice/optional/Client.java b/java/demo/Ice/optional/Client.java index 14666079a53..3a57a5c6f9d 100644 --- a/java/demo/Ice/optional/Client.java +++ b/java/demo/Ice/optional/Client.java @@ -48,7 +48,7 @@ public class Client extends Ice.Application // // Add a contact for "john". In this case since all parameters are provided it isn't - // necessary to construct an Optional. + // necessary to construct an Optional. // String johnNumber = "123-456-7890"; contactdb.addContact("john", NumberType.HOME, johnNumber, 0); |