Author: fmeschbe
Date: Tue Dec 16 05:30:14 2008
New Revision: 727046
URL: http://svn.apache.org/viewvc?rev=727046&view=rev
Log:
Include the target URL in toString()
Modified:
incubator/sling/trunk/jcr/resource/src/main/java/org/apache/sling/jcr/resource/internal/helper/RedirectResource.java
Modified:
incubator/sling/trunk/jcr/resource/src/main/java/org/apache/sling/jcr/resource/internal/helper/RedirectResource.java
URL:
http://svn.apache.org/viewvc/incubator/sling/trunk/jcr/resource/src/main/java/org/apache/sling/jcr/resource/internal/helper/RedirectResource.java?rev=727046&r1=727045&r2=727046&view=diff
==============================================================================
---
incubator/sling/trunk/jcr/resource/src/main/java/org/apache/sling/jcr/resource/internal/helper/RedirectResource.java
(original)
+++
incubator/sling/trunk/jcr/resource/src/main/java/org/apache/sling/jcr/resource/internal/helper/RedirectResource.java
Tue Dec 16 05:30:14 2008
@@ -48,4 +48,8 @@
return super.adaptTo(type);
}
+ @Override
+ public String toString() {
+ return super.toString() + ", target=" + target;
+ }
}
\ No newline at end of file