diff options
author | Rene Stoeckel <[email protected]> | 2005-12-27 21:02:31 +0000 |
---|---|---|
committer | Rene Stoeckel <[email protected]> | 2005-12-27 21:02:31 +0000 |
commit | 9d4a45835aa0ecdf6c92c3cc1ac93e3526ba40e9 (patch) | |
tree | b0dc541e86f11ef2990bac8f362cb6971caec170 /test/jake2 | |
parent | 90135445c8833ff11a31bf37fa09a0b265904b55 (diff) |
code cleanups and beautification
Diffstat (limited to 'test/jake2')
-rw-r--r-- | test/jake2/qcommon/TestINFO.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/jake2/qcommon/TestINFO.java b/test/jake2/qcommon/TestINFO.java index 6a8483a..1074513 100644 --- a/test/jake2/qcommon/TestINFO.java +++ b/test/jake2/qcommon/TestINFO.java @@ -19,7 +19,7 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ // Created on 29.12.2003 by RST. -// $Id: TestINFO.java,v 1.2 2004-09-22 19:22:10 salomo Exp $ +// $Id: TestINFO.java,v 1.3 2005-12-27 21:02:30 salomo Exp $ package jake2.qcommon; @@ -34,7 +34,7 @@ public class TestINFO { public static void main(String args[]) { String test = "\\key1\\value 1\\key 2 \\value2\\key3\\ v a l u e 3\\key4\\val ue 4"; Info.Print(test); - test = Info.Info_RemoveKey1(test, "key1"); + test = Info.Info_RemoveKey(test, "key1"); Info.Print(test); } } |