summaryrefslogtreecommitdiff
path: root/indra/viewer_components
diff options
context:
space:
mode:
authorGlenn Glazer <coyot@lindenlab.com>2016-06-27 16:20:10 -0700
committerGlenn Glazer <coyot@lindenlab.com>2016-06-27 16:20:10 -0700
commitcb90597b4e6fa64db706d6341039ade3c6d09a5b (patch)
treeb9786a00e47747381a956c69cb0661521b1d2257 /indra/viewer_components
parente01f6168993af377b2a625176efff95b498b5d21 (diff)
remove extraneous comments
Diffstat (limited to 'indra/viewer_components')
-rwxr-xr-xindra/viewer_components/manager/download_update.py8
1 files changed, 0 insertions, 8 deletions
diff --git a/indra/viewer_components/manager/download_update.py b/indra/viewer_components/manager/download_update.py
index aa8555cd21..71da5c97c2 100755
--- a/indra/viewer_components/manager/download_update.py
+++ b/indra/viewer_components/manager/download_update.py
@@ -43,14 +43,6 @@ def download_update(url = None, download_dir = None, size = None, progressbar =
#total size (for progressbar) of download
#progressbar: whether to display one (not used for background downloads)
#chunk_size is in bytes
- #in_queue is to communicate between download_update and the thread
- #out_queue is to communicate between the thread and the progressbar
- #if progressbar:
- #out_queue = Queue.Queue()
- #buffer_thread = ThreadedBuffer(size, in_queue, out_queue)
- #buffer_thread.start()
- #pb_thread = ThreadedBar(size, out_queue)
- #pb_thread.start()
queue = Queue.Queue()
filename = os.path.join(download_dir, url.split('/')[-1])