[Cleanup] Minor code formatting change.

git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@2618 3789f03b-4d11-0410-bbf8-ca57d06f2519
diff --git a/java/src/com/tightvnc/rfbplayer/FbsConnection.java b/java/src/com/tightvnc/rfbplayer/FbsConnection.java
index 3e9e3a5..9a01433 100644
--- a/java/src/com/tightvnc/rfbplayer/FbsConnection.java
+++ b/java/src/com/tightvnc/rfbplayer/FbsConnection.java
@@ -36,7 +36,7 @@
   /** Index data loaded from the .fbi file. */
   FbsEntryPoint[] indexData;
   int numIndexRecords;
-  
+
   /** RFB initialization data loaded from the .fbi file. */
   byte[] rfbInitData;
 
@@ -178,7 +178,7 @@
       }
       // Check correctness of the data read.
       for (int i = 1; i < numRecordsRead; i++) {
-        if (newIndex[i].timestamp <= newIndex[i-1].timestamp) {
+        if (newIndex[i].timestamp <= newIndex[i - 1].timestamp) {
           System.err.println("Could not load index: wrong .fbi file contents");
           return;
         }