diff --git a/indra/newview/llappviewer.cpp b/indra/newview/llappviewer.cpp
index e557076daabfc009422138dac548b93dabc659af..e178bbb21ae4212d6a72b05f00c515b39ee9aa8d 100644
--- a/indra/newview/llappviewer.cpp
+++ b/indra/newview/llappviewer.cpp
@@ -1487,11 +1487,9 @@ bool LLAppViewer::frame()
 				ms_sleep(500);
 			}
 
-			//const F64Milliseconds max_idle_time = llmin(.005f*10.f*(F32Milliseconds)gFrameTimeSeconds, F32Milliseconds(5)); // 5 ms a second
 			idleTimer.reset();
 			S32 total_work_pending = 0;
 			S32 total_io_pending = 0;	
-			//while(1)
 			{
 				S32 work_pending = 0;
 				S32 io_pending = 0;
@@ -1516,14 +1514,6 @@ bool LLAppViewer::frame()
 				total_work_pending += work_pending ;
 				total_io_pending += io_pending ;
 
-                if (work_pending)
-                {
-                    LL_WARNS("Idle") << "Work pending in texture thread: " << work_pending << LL_ENDL;
-                }
-// 				if (!work_pending || idleTimer.getElapsedTimeF64() >= max_idle_time)
-// 				{
-// 					break;
-// 				}
 			}
 			gMeshRepo.update() ;