[Cleanup] Renamed member variable idx to indexData.

git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@2606 3789f03b-4d11-0410-bbf8-ca57d06f2519
diff --git a/java/src/com/tightvnc/rfbplayer/FbsConnection.java b/java/src/com/tightvnc/rfbplayer/FbsConnection.java
index 3dc2cf5..0939785 100644
--- a/java/src/com/tightvnc/rfbplayer/FbsConnection.java
+++ b/java/src/com/tightvnc/rfbplayer/FbsConnection.java
@@ -34,7 +34,7 @@
   URL fbkURL;
 
   /** Index data loaded from the .fbi file. */
-  FbsEntryPoint[] idx;
+  FbsEntryPoint[] indexData;
   int numIndexRecords;
 
   FbsConnection(String fbsLocation, String indexLocationPrefix, Applet applet)
@@ -57,7 +57,7 @@
     }
 
     // Try to load the .fbi index file.
-    idx = null;
+    indexData = null;
     numIndexRecords = 0;
     loadIndex();
   }
@@ -71,7 +71,7 @@
   }
 
   /**
-   * Load index data from .fbi file to {@link #idx idx}.
+   * Load index data from .fbi file to {@link #indexData indexData}.
    */
   private void loadIndex() {
     // Loading .fbi makes sense only if both .fbi and .fbk files are available.
@@ -135,7 +135,7 @@
         System.err.println("Could not load index: failed to load .fbi file");
         return;
       }
-      idx = newIndex;
+      indexData = newIndex;
       numIndexRecords = numRecordsRead;
       System.err.println("Loaded index data, " + numRecordsRead + " records");
     }