Update of /cvsroot/jake2/jake2/src/jake2/qcommon
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv11377/src/jake2/qcommon
Modified Files:
Com.java
Log Message:
fix download bug
Index: Com.java
===================================================================
RCS file: /cvsroot/jake2/jake2/src/jake2/qcommon/Com.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** Com.java 9 Jul 2004 06:50:50 -0000 1.3
--- Com.java 23 Jul 2004 22:38:52 -0000 1.4
***************
*** 351,359 ****
}
- public static void d(String fmt)
- {
- DPrintf(fmt + "\n", null);
- }
-
public static void Printf(String fmt)
{
--- 351,354 ----
***************
*** 516,522 ****
}
! public static void StripExtension(String string, String string2)
! {
! // TODO implement StripExtension
}
--- 511,519 ----
}
! public static String StripExtension(String string) {
! int i = string.lastIndexOf('.');
! if (i < 0)
! return string;
! return string.substring(0, i);
}
***************
*** 524,528 ****
* CRC table.
*/
-
static int chktbl[]=
{
--- 521,524 ----
|