Update of /cvsroot/jake2/jake2/src/jake2/client
In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv2419/src/jake2/client
Modified Files:
CL_parse.java
Log Message:
cosmetic
Index: CL_parse.java
===================================================================
RCS file: /cvsroot/jake2/jake2/src/jake2/client/CL_parse.java,v
retrieving revision 1.22
retrieving revision 1.23
diff -C2 -d -r1.22 -r1.23
*** CL_parse.java 27 Feb 2007 14:22:30 -0000 1.22
--- CL_parse.java 15 Apr 2007 20:12:32 -0000 1.23
***************
*** 22,25 ****
--- 22,28 ----
*/
+
+ // $Id$
+
package jake2.client;
***************
*** 58,66 ****
}
! /*
! * =============== CL_CheckOrDownloadFile
! *
! * Returns true if the file exists, otherwise it attempts to start a
! * download from the server. ===============
*/
public static boolean CheckOrDownloadFile(String filename) {
--- 61,68 ----
}
! /**
! * CL_CheckOrDownloadFile returns true if the file exists,
! * otherwise it attempts to start a
! * download from the server.
*/
public static boolean CheckOrDownloadFile(String filename) {
***************
*** 232,241 ****
}
! //fwrite(net_message.data[net_message.readcount], 1, size,
! // cls.download);
try {
Globals.cls.download.write(Globals.net_message.data,
Globals.net_message.readcount, size);
! } catch (Exception e) {
}
Globals.net_message.readcount += size;
--- 234,243 ----
}
!
try {
Globals.cls.download.write(Globals.net_message.data,
Globals.net_message.readcount, size);
! }
! catch (Exception e) {
}
Globals.net_message.readcount += size;
***************
*** 249,260 ****
} else {
String oldn, newn;
- //char oldn[MAX_OSPATH];
- //char newn[MAX_OSPATH];
-
- // Com.Printf ("100%%\n");
try {
Globals.cls.download.close();
! } catch (IOException e) {
}
--- 251,259 ----
} else {
String oldn, newn;
try {
Globals.cls.download.close();
! }
! catch (IOException e) {
}
|