diff --git a/indra/newview/llagent.cpp b/indra/newview/llagent.cpp
index 112bb4e3d29b879e7854843f53628d3e20283574..15a3c3e0fe3ef0e4a42b6e09495dfecaf1a6dbc2 100755
--- a/indra/newview/llagent.cpp
+++ b/indra/newview/llagent.cpp
@@ -4024,10 +4024,6 @@ bool LLAgent::hasPendingTeleportRequest()
 void LLAgent::startTeleportRequest()
 {
     LL_INFOS("Telport") << "Agent handling start teleport request." << LL_ENDL;
-    if(LLVoiceClient::instanceExists())
-    {
-        LLVoiceClient::getInstance()->setHidden(TRUE);
-    }
 	if (hasPendingTeleportRequest())
 	{
         mTeleportCanceled.reset();
@@ -4083,11 +4079,6 @@ void LLAgent::handleTeleportFinished()
 void LLAgent::handleTeleportFailed()
 {
     LL_WARNS("Teleport") << "Agent handling teleport failure!" << LL_ENDL;
-    if(LLVoiceClient::instanceExists())
-    {
-        LLVoiceClient::getInstance()->setHidden(FALSE);
-    }
-
     setTeleportState(LLAgent::TELEPORT_NONE);
     // Unlock the UI if the progress bar has been shown.
 //     gViewerWindow->setShowProgress(FALSE);
diff --git a/indra/newview/llvoiceclient.cpp b/indra/newview/llvoiceclient.cpp
index 56c0910983ecff9021f2c995bf6a2315a4d96d6b..d568cb45e1cde05420f96d9a8168c1d7a6638b94 100755
--- a/indra/newview/llvoiceclient.cpp
+++ b/indra/newview/llvoiceclient.cpp
@@ -161,14 +161,6 @@ void LLVoiceClient::userAuthorized(const std::string& user_id, const LLUUID &age
 	mVoiceModule->userAuthorized(user_id, agentID);
 }
 
-void LLVoiceClient::setHidden(bool hidden)
-{
-    if (mVoiceModule)
-    {
-        mVoiceModule->setHidden(hidden);
-    }
-}
-
 void LLVoiceClient::terminate()
 {
 	if (mVoiceModule) mVoiceModule->terminate();
diff --git a/indra/newview/llvoiceclient.h b/indra/newview/llvoiceclient.h
index b05bcb23b705c8601327d32072647f87488b3abf..13ea957297c3acef5418a440ce2ac107ff85ff75 100755
--- a/indra/newview/llvoiceclient.h
+++ b/indra/newview/llvoiceclient.h
@@ -106,8 +106,6 @@ public:
 	
 	virtual bool isVoiceWorking() const = 0; // connected to a voice server and voice channel
     
-    virtual void setHidden(bool hidden)=0;  //  Hides the user from voice.
-
 	virtual const LLVoiceVersionInfo& getVersion()=0;
 	
 	/////////////////////
@@ -346,7 +344,6 @@ public:
 
 	void setCaptureDevice(const std::string& name);
 	void setRenderDevice(const std::string& name);
-    void setHidden(bool hidden);
 
 	const LLVoiceDeviceList& getCaptureDevices();
 	const LLVoiceDeviceList& getRenderDevices();
diff --git a/indra/newview/llvoicevivox.cpp b/indra/newview/llvoicevivox.cpp
index 2440aeece545c8fc9ff6f7ed13354f2c762a457f..edbe0caef6db5aadf05216d75083fae70d7ffdb7 100755
--- a/indra/newview/llvoicevivox.cpp
+++ b/indra/newview/llvoicevivox.cpp
@@ -2473,14 +2473,6 @@ static void oldSDKTransform (LLVector3 &left, LLVector3 &up, LLVector3 &at, LLVe
 #endif
 }
 
-void LLVivoxVoiceClient::setHidden(bool hidden)
-{
-    mHidden = hidden;
-    
-    sendPositionAndVolumeUpdate();
-    return;
-}
-
 void LLVivoxVoiceClient::sendPositionAndVolumeUpdate(void)
 {	
 	std::ostringstream stream;
diff --git a/indra/newview/llvoicevivox.h b/indra/newview/llvoicevivox.h
index f32c7c975f668a037d19e1ec2a56a16cb001e7fc..e02301b136e13057802a337c2899b3a20f6a12a0 100755
--- a/indra/newview/llvoicevivox.h
+++ b/indra/newview/llvoicevivox.h
@@ -745,8 +745,7 @@ private:
 	bool inSpatialChannel(void);
 	std::string getAudioSessionURI();
 	std::string getAudioSessionHandle();
-			
-    void setHidden(bool hidden); //virtual
+    
 	void sendPositionAndVolumeUpdate(void);
 	
     void sendCaptureAndRenderDevices();
@@ -777,7 +776,6 @@ private:
 	
 	bool		mMuteMic;
 	bool		mMuteMicDirty;
-    bool        mHidden;       //Set to true during teleport to hide the agent's position.
 			
 	// Set to true when the friends list is known to have changed.
 	bool		mFriendsListDirty;