martinc 2004/12/12 08:40:15
Modified: chain/xdocs cookbook.xml
Log:
Bug #32655: Code fragment incorrect.
Revision Changes Path
1.2 +1 -1 jakarta-commons/chain/xdocs/cookbook.xml
Index: cookbook.xml
===================================================================
RCS file: /home/cvs/jakarta-commons/chain/xdocs/cookbook.xml,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- cookbook.xml 16 Nov 2004 20:43:03 -0000 1.1
+++ cookbook.xml 12 Dec 2004 16:40:15 -0000 1.2
@@ -357,7 +357,7 @@
public class ProfileCheck implements Command {
- public boolean newProfile(Context context) { return new Profile(); }
+ public Profile newProfile(Context context) { return new Profile(); }
public boolean execute(Context context) throws Exception {
Object profile = context.get(Profile.PROFILE_KEY);
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]