We've expanded our news coverage and improved our search! Visit
oreilly.com for the latest or search for all things across O'Reilly!
Article:
 |
|
Documenting Projects with Apache Forrest
|
Subject: |
|
Error in the example code |
Date: |
|
2004-06-07 01:43:52 |
From: |
|
Espen D
|
|
There's a tiny bug in the example source which makes the links to JavaDoc methods invalid.
Replace the code on line 84:
return path.substring(0, ndxHash) + ".html" + path.substring(ndxHash);
with this:
return path.substring(0, ndxHash) + ".html" + className.substring(ndxHash);
then you will be sent to the correct anchor for the method.
|