Bug 1185470: Remove 'Get' prefixes from hashtable iterator methods. r=froydnj

This commit is contained in:
Kyle Huey
2015-07-20 20:21:28 +08:00
parent f64ef2de7a
commit b8b25584fa
15 changed files with 39 additions and 39 deletions

View File

@@ -132,7 +132,7 @@ nsThreadManager::Shutdown()
{
OffTheBooksMutexAutoLock lock(mLock);
for (auto iter = mThreadsByPRThread.Iter(); !iter.Done(); iter.Next()) {
nsRefPtr<nsThread>& thread = iter.GetData();
nsRefPtr<nsThread>& thread = iter.Data();
threads.AppendElement(thread);
iter.Remove();
}