Remove some oboslete code.

traverseNextItem was renamed itemAfter and it can now
deal with a NULL previous node.
diff --git a/WebCore/html/HTMLCollection.cpp b/WebCore/html/HTMLCollection.cpp
index de4c424..3c14a70 100644
--- a/WebCore/html/HTMLCollection.cpp
+++ b/WebCore/html/HTMLCollection.cpp
@@ -243,14 +243,6 @@
 {
      resetCollectionInfo();
      
-#ifdef ANDROID_FIX
-     // resetCollectionInfo() can set info->current to be 0. If this is the 
-     // case, we need to go back to the firstItem. Otherwise traverseNextItem 
-     // will crash.
-     if (!m_info->current)
-         return firstItem();
-#endif
-     
      // Look for the 'second' item. The first one is currentItem, already given back.
      Element* retval = itemAfter(m_info->current);
      m_info->current = retval;