Update of /cvsroot/springframework/spring/src/org/springframework/web/portlet
In directory fdv4jf1.ch3.sourceforge.com:/tmp/cvs-serv4919/src/org/springframework/web/portlet
Modified Files:
HandlerExecutionChain.java
Log Message:
polishing
Index: HandlerExecutionChain.java
===================================================================
RCS file: /cvsroot/springframework/spring/src/org/springframework/web/portlet/HandlerExecutionChain.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** HandlerExecutionChain.java 23 Jul 2007 11:17:35 -0000 1.3
--- HandlerExecutionChain.java 27 Nov 2008 18:04:36 -0000 1.4
***************
*** 1,4 ****
/*
! * Copyright 2002-2007 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
--- 1,4 ----
/*
! * Copyright 2002-2008 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
***************
*** 115,117 ****
--- 115,125 ----
}
+
+ /**
+ * Delegates to the handler's <code>toString()</code>.
+ */
+ public String toString() {
+ return String.valueOf(this.handler);
+ }
+
}
|