diff options
author | Constantin Kaplinsky <const@tightvnc.com> | 2008-06-20 12:24:52 +0000 |
---|---|---|
committer | Constantin Kaplinsky <const@tightvnc.com> | 2008-06-20 12:24:52 +0000 |
commit | 5ba167a94f120e4fe6071c86c6b7865c3b4f20ef (patch) | |
tree | 974a3ff543e86d32651f9eada1d7421ce571401b /java | |
parent | be68e7f272459ae218fa4c0082ed41fea192b54a (diff) | |
download | tigervnc-5ba167a94f120e4fe6071c86c6b7865c3b4f20ef.tar.gz tigervnc-5ba167a94f120e4fe6071c86c6b7865c3b4f20ef.zip |
[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
Diffstat (limited to 'java')
-rw-r--r-- | java/src/com/tightvnc/rfbplayer/FbsConnection.java | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/java/src/com/tightvnc/rfbplayer/FbsConnection.java b/java/src/com/tightvnc/rfbplayer/FbsConnection.java index 3dc2cf59..09397859 100644 --- a/java/src/com/tightvnc/rfbplayer/FbsConnection.java +++ b/java/src/com/tightvnc/rfbplayer/FbsConnection.java @@ -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"); } |