]> source.dussan.org Git - tigervnc.git/commitdiff
[Cleanup] Renamed member variable idx to indexData.
authorConstantin Kaplinsky <const@tightvnc.com>
Fri, 20 Jun 2008 12:24:52 +0000 (12:24 +0000)
committerConstantin Kaplinsky <const@tightvnc.com>
Fri, 20 Jun 2008 12:24:52 +0000 (12:24 +0000)
git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@2606 3789f03b-4d11-0410-bbf8-ca57d06f2519

java/src/com/tightvnc/rfbplayer/FbsConnection.java

index 3dc2cf596ff44e52021369cb4aa0ff80c96c8fbf..093978593a51d68da0dcacfdca39411da8f9511d 100644 (file)
@@ -34,7 +34,7 @@ public class FbsConnection {
   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 @@ public class FbsConnection {
     }
 
     // Try to load the .fbi index file.
-    idx = null;
+    indexData = null;
     numIndexRecords = 0;
     loadIndex();
   }
@@ -71,7 +71,7 @@ public class FbsConnection {
   }
 
   /**
-   * 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 @@ public class FbsConnection {
         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");
     }