From 58b6aa8ca1ea1348cfbf41627f296579df484c87 Mon Sep 17 00:00:00 2001 From: Thorvald Natvig Date: Fri, 20 Feb 2009 23:52:06 +0000 Subject: [PATCH] getServer() for Ice doesn't throw, it returns a null proxy. git-svn-id: https://mumble.svn.sourceforge.net/svnroot/mumble/trunk@1565 05730e5d-ab1b-0410-a4ac-84af385074fa --- src/murmur/Murmur.ice | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/murmur/Murmur.ice b/src/murmur/Murmur.ice index ff4396e04..8714659fa 100644 --- a/src/murmur/Murmur.ice +++ b/src/murmur/Murmur.ice @@ -650,9 +650,9 @@ module Murmur ["amd"] interface Meta { /** Fetch interface to specific server. * @param id Server ID. See [Server::getId]. - * @return Interface for specified server. + * @return Interface for specified server, or a null proxy if id is invalid. */ - idempotent Server *getServer(int id) throws InvalidServerException; + idempotent Server *getServer(int id); /** Create a new server. Call [Server::getId] on the returned interface to find it's ID. * @return Interface for new server.