From: Juergen H. <jho...@us...> - 2008-11-27 18:04:47
|
Update of /cvsroot/springframework/spring/src/org/springframework/web/servlet In directory fdv4jf1.ch3.sourceforge.com:/tmp/cvs-serv4919/src/org/springframework/web/servlet Modified Files: HandlerExecutionChain.java Log Message: polishing Index: HandlerExecutionChain.java =================================================================== RCS file: /cvsroot/springframework/spring/src/org/springframework/web/servlet/HandlerExecutionChain.java,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** HandlerExecutionChain.java 21 Oct 2008 10:15:42 -0000 1.9 --- HandlerExecutionChain.java 27 Nov 2008 18:04:36 -0000 1.10 *************** *** 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"); *************** *** 114,122 **** } /** * Delegates to the handler's <code>toString()</code>. */ public String toString() { ! return String.valueOf(handler); } } --- 114,124 ---- } + /** * Delegates to the handler's <code>toString()</code>. */ public String toString() { ! return String.valueOf(this.handler); } + } |