Skip to content

Commit

Permalink
Remove out of date comments
Browse files Browse the repository at this point in the history
  • Loading branch information
markt-asf committed Dec 2, 2024
1 parent c9c80c7 commit 8769fef
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 32 deletions.
8 changes: 0 additions & 8 deletions webapps/examples/WEB-INF/classes/CookieExample.java
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/

import java.io.IOException;
import java.io.PrintWriter;
import java.util.ResourceBundle;
Expand All @@ -34,7 +33,6 @@
*
* @author James Duncan Davidson <[email protected]>
*/

public class CookieExample extends HttpServlet {

private static final long serialVersionUID = 1L;
Expand Down Expand Up @@ -65,12 +63,6 @@ public void doGet(HttpServletRequest request, HttpServletResponse response) thro
out.println("</head>");
out.println("<body bgcolor=\"white\">");

// relative links

// XXX
// making these absolute till we work out the
// addition of a PathInfo issue

out.println("<a href=\"../cookies.html\">");
out.println(
"<img src=\"../images/code.gif\" height=24 " + "width=24 align=right border=0 alt=\"view code\"></a>");
Expand Down
7 changes: 0 additions & 7 deletions webapps/examples/WEB-INF/classes/RequestHeaderExample.java
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/

import java.io.IOException;
import java.io.PrintWriter;
import java.util.Enumeration;
Expand Down Expand Up @@ -96,12 +95,6 @@ protected void renderHTML(HttpServletRequest request, HttpServletResponse respon
out.println("</head>");
out.println("<body bgcolor=\"white\">");

// all links relative

// XXX
// making these absolute till we work out the
// addition of a PathInfo issue

out.println("<a href=\"../reqheaders.html\">");
out.println(
"<img src=\"../images/code.gif\" height=24 " + "width=24 align=right border=0 alt=\"view code\"></a>");
Expand Down
9 changes: 0 additions & 9 deletions webapps/examples/WEB-INF/classes/RequestParamExample.java
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/

import java.io.IOException;
import java.io.PrintWriter;
import java.util.ResourceBundle;
Expand Down Expand Up @@ -53,14 +52,6 @@ public void doGet(HttpServletRequest request, HttpServletResponse response) thro
out.println("</head>");
out.println("<body bgcolor=\"white\">");

// img stuff not req'd for source code HTML showing

// all links relative

// XXX
// making these absolute till we work out the
// addition of a PathInfo issue

out.println("<a href=\"../reqparams.html\">");
out.println(
"<img src=\"../images/code.gif\" height=24 " + "width=24 align=right border=0 alt=\"view code\"></a>");
Expand Down
8 changes: 0 additions & 8 deletions webapps/examples/WEB-INF/classes/SessionExample.java
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/

import java.io.IOException;
import java.io.PrintWriter;
import java.util.Date;
Expand Down Expand Up @@ -57,13 +56,6 @@ public void doGet(HttpServletRequest request, HttpServletResponse response) thro
out.println("</head>");
out.println("<body bgcolor=\"white\">");

// img stuff not req'd for source code HTML showing
// relative links everywhere!

// XXX
// making these absolute till we work out the
// addition of a PathInfo issue

out.println("<a href=\"../sessions.html\">");
out.println(
"<img src=\"../images/code.gif\" height=24 " + "width=24 align=right border=0 alt=\"view code\"></a>");
Expand Down

0 comments on commit 8769fef

Please sign in to comment.