From: Holger Z. <hz...@us...> - 2004-10-04 12:50:49
|
Update of /cvsroot/jake2/jake2/src/jake2/client In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv13966/src/jake2/client Modified Files: CL_pred.java CL.java CL_tent.java Menu.java CL_newfx.java Log Message: remove Lib.linesplit() Index: Menu.java =================================================================== RCS file: /cvsroot/jake2/jake2/src/jake2/client/Menu.java,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** Menu.java 27 Sep 2004 19:47:26 -0000 1.10 --- Menu.java 4 Oct 2004 12:50:37 -0000 1.11 *************** *** 1910,1914 **** if (b != null) { creditsBuffer = new String(b); ! String line[] = Lib.linesplit(creditsBuffer); for (n = 0; n < line.length; n++) { --- 1910,1914 ---- if (b != null) { creditsBuffer = new String(b); ! String line[] = creditsBuffer.split("\r\n"); for (n = 0; n < line.length; n++) { *************** *** 2725,2729 **** s = new String(buffer); ! String lines[] = Lib.linesplit(s); nummaps = lines.length; --- 2725,2729 ---- s = new String(buffer); ! String lines[] = s.split("\r\n"); nummaps = lines.length; *************** *** 4493,4497 **** if ((cbd = Sys.GetClipboardData()) != null) { //strtok(cbd, "\n\r\b"); ! String lines[] = Lib.linesplit(cbd); if (lines.length > 0 && lines[0].length() != 0) { //strncpy(f.buffer, cbd, f.length - 1); --- 4493,4497 ---- if ((cbd = Sys.GetClipboardData()) != null) { //strtok(cbd, "\n\r\b"); ! String lines[] = cbd.split("\r\n"); if (lines.length > 0 && lines[0].length() != 0) { //strncpy(f.buffer, cbd, f.length - 1); Index: CL_newfx.java =================================================================== RCS file: /cvsroot/jake2/jake2/src/jake2/client/CL_newfx.java,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** CL_newfx.java 22 Sep 2004 19:22:08 -0000 1.4 --- CL_newfx.java 4 Oct 2004 12:50:37 -0000 1.5 *************** *** 30,34 **** import jake2.Defines; import jake2.Globals; - import jake2.client.CL_fx.cdlight_t; import jake2.util.Lib; import jake2.util.Math3D; --- 30,33 ---- Index: CL_tent.java =================================================================== RCS file: /cvsroot/jake2/jake2/src/jake2/client/CL_tent.java,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** CL_tent.java 22 Sep 2004 19:22:08 -0000 1.5 --- CL_tent.java 4 Oct 2004 12:50:37 -0000 1.6 *************** *** 28,37 **** import jake2.Defines; import jake2.Globals; - import jake2.client.cl_sustain_t.ThinkAdapter; import jake2.game.player_state_t; import jake2.qcommon.Com; import jake2.qcommon.MSG; import jake2.render.model_t; ! import jake2.sound.*; import jake2.util.Lib; import jake2.util.Math3D; --- 28,37 ---- import jake2.Defines; import jake2.Globals; import jake2.game.player_state_t; import jake2.qcommon.Com; import jake2.qcommon.MSG; import jake2.render.model_t; ! import jake2.sound.S; ! import jake2.sound.sfx_t; import jake2.util.Lib; import jake2.util.Math3D; Index: CL_pred.java =================================================================== RCS file: /cvsroot/jake2/jake2/src/jake2/client/CL_pred.java,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** CL_pred.java 22 Sep 2004 19:22:08 -0000 1.5 --- CL_pred.java 4 Oct 2004 12:50:37 -0000 1.6 *************** *** 28,36 **** import jake2.Defines; import jake2.Globals; - import jake2.Defines; - import jake2.game.pmove_t.PointContentsAdapter; - import jake2.game.pmove_t.TraceAdapter; - - import jake2.Globals; import jake2.game.*; import jake2.qcommon.*; --- 28,31 ---- Index: CL.java =================================================================== RCS file: /cvsroot/jake2/jake2/src/jake2/client/CL.java,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** CL.java 22 Sep 2004 19:22:08 -0000 1.11 --- CL.java 4 Oct 2004 12:50:37 -0000 1.12 *************** *** 30,40 **** import jake2.game.*; import jake2.qcommon.*; - import jake2.qcommon.qfiles.dmdl_t; import jake2.server.SV_MAIN; ! import jake2.sound.*; import jake2.sys.*; ! import jake2.util.Lib; ! import jake2.util.Math3D; ! import jake2.util.Vargs; import java.io.IOException; --- 30,37 ---- import jake2.game.*; import jake2.qcommon.*; import jake2.server.SV_MAIN; ! import jake2.sound.S; import jake2.sys.*; ! import jake2.util.*; import java.io.IOException; |