diff options
author | Mark Spruiell <mes@zeroc.com> | 2009-01-06 15:27:35 -0800 |
---|---|---|
committer | Mark Spruiell <mes@zeroc.com> | 2009-01-06 15:27:35 -0800 |
commit | 799ae412e223c9fd232df54c23e7abcdba4f9968 (patch) | |
tree | 35be16ebb9110c60a7e763166e2d02c635ea21a1 /java/src/IceSSL/ConnectionInfo.java | |
parent | another fix for bug 3628 (diff) | |
download | ice-799ae412e223c9fd232df54c23e7abcdba4f9968.tar.bz2 ice-799ae412e223c9fd232df54c23e7abcdba4f9968.tar.xz ice-799ae412e223c9fd232df54c23e7abcdba4f9968.zip |
- Another fix for bug 3628
- Porting IceSSL changes from Android branch
Diffstat (limited to 'java/src/IceSSL/ConnectionInfo.java')
-rw-r--r-- | java/src/IceSSL/ConnectionInfo.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/java/src/IceSSL/ConnectionInfo.java b/java/src/IceSSL/ConnectionInfo.java index 53433eb4e3d..5e10a24bec8 100644 --- a/java/src/IceSSL/ConnectionInfo.java +++ b/java/src/IceSSL/ConnectionInfo.java @@ -42,11 +42,11 @@ public class ConnectionInfo // If the connection is incoming this bool is true, false // otherwise. // - boolean incoming; + public boolean incoming; // // The name of the object adapter that hosts this endpoint, if // any. // - String adapterName; + public String adapterName; } |