From: Constantin Kaplinsky Date: Mon, 23 Jun 2008 12:30:41 +0000 (+0000) Subject: [Cleanup] Minor code formatting change. X-Git-Tag: v0.0.90~413 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=735401212304787d5ac8df441553593551d1e846;p=tigervnc.git [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 3e9e3a57..9a014337 100644 --- a/java/src/com/tightvnc/rfbplayer/FbsConnection.java +++ b/java/src/com/tightvnc/rfbplayer/FbsConnection.java @@ -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; }