diff options
author | Dwayne Boone <dwayne@zeroc.com> | 2005-07-11 14:06:17 +0000 |
---|---|---|
committer | Dwayne Boone <dwayne@zeroc.com> | 2005-07-11 14:06:17 +0000 |
commit | bfd7f1aa2e102b933ac5933124f2560428a34452 (patch) | |
tree | c89163be2d2e078324984c85e4bce54baf3ffc38 /cpp/src/Ice/EndpointFactoryManager.cpp | |
parent | fix optimization settings. (diff) | |
download | ice-bfd7f1aa2e102b933ac5933124f2560428a34452.tar.bz2 ice-bfd7f1aa2e102b933ac5933124f2560428a34452.tar.xz ice-bfd7f1aa2e102b933ac5933124f2560428a34452.zip |
Parsing a stringified proxy no longer fails if a endpoint type is unknown
as long as there are others that are known.
Diffstat (limited to 'cpp/src/Ice/EndpointFactoryManager.cpp')
-rw-r--r-- | cpp/src/Ice/EndpointFactoryManager.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/cpp/src/Ice/EndpointFactoryManager.cpp b/cpp/src/Ice/EndpointFactoryManager.cpp index 35681182764..9f6c81ee6f0 100644 --- a/cpp/src/Ice/EndpointFactoryManager.cpp +++ b/cpp/src/Ice/EndpointFactoryManager.cpp @@ -102,9 +102,7 @@ IceInternal::EndpointFactoryManager::create(const string& str) const } } - EndpointParseException ex(__FILE__, __LINE__); - ex.str = str; - throw ex; + return 0; } EndpointPtr |