]> source.dussan.org Git - tigervnc.git/commitdiff
[Cleanup] Minor code formatting change.
authorConstantin Kaplinsky <const@tightvnc.com>
Mon, 23 Jun 2008 12:30:41 +0000 (12:30 +0000)
committerConstantin Kaplinsky <const@tightvnc.com>
Mon, 23 Jun 2008 12:30:41 +0000 (12:30 +0000)
git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@2618 3789f03b-4d11-0410-bbf8-ca57d06f2519

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

index 3e9e3a57ad58feda863f4b7ded4fa5b1efb67833..9a01433772d4da105bb0e24dcda58571af94533f 100644 (file)
@@ -36,7 +36,7 @@ public class FbsConnection {
   /** 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 @@ public class FbsConnection {
       }
       // 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;
         }