From: Tim P <ti...@us...> - 2008-03-17 12:08:15
|
Update of /cvsroot/webmacro/webmacro/examples In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv23952/examples Modified Files: GuestBook.java Log Message: Eclipse warning: unused variable debug Index: GuestBook.java =================================================================== RCS file: /cvsroot/webmacro/webmacro/examples/GuestBook.java,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** GuestBook.java 28 Jan 2008 16:08:06 -0000 1.9 --- GuestBook.java 17 Mar 2008 12:08:11 -0000 1.10 *************** *** 1,3 **** - /* * Copyright (c) 1998, 1999 Semiotek Inc. All Rights Reserved. --- 1,2 ---- *************** *** 36,44 **** * http://...servletrunner.../servlet/GuestBook/ * ! * You guestbook should now work. */ public class GuestBook extends WMServlet { ! ArrayList book = new ArrayList(); String name; --- 35,45 ---- * http://...servletrunner.../servlet/GuestBook/ * ! * Your guestbook should now work. */ public class GuestBook extends WMServlet { ! private static final long serialVersionUID = -7787198191764480269L; ! ! ArrayList book = new ArrayList(); String name; *************** *** 47,52 **** GuestEntry myGuestEntry; - final static private boolean debug = false; - public Template handle(WebContext context) throws HandlerException --- 48,51 ---- |