Remove unused code
authormarkt <markt@13f79535-47bb-0310-9956-ffa450edef68>
Sat, 26 Jun 2010 12:05:30 +0000 (12:05 +0000)
committermarkt <markt@13f79535-47bb-0310-9956-ffa450edef68>
Sat, 26 Jun 2010 12:05:30 +0000 (12:05 +0000)
git-svn-id: https://svn.apache.org/repos/asf/tomcat/trunk@958213 13f79535-47bb-0310-9956-ffa450edef68

webapps/examples/WEB-INF/classes/cal/Entry.java
webapps/examples/WEB-INF/classes/cal/JspCalendar.java

index 0b1f15a..85f81cf 100644 (file)
@@ -21,7 +21,6 @@ public class Entry {
 
     String hour;
     String description;
-    String color;
 
     public Entry(String hour) {
         this.hour = hour;
index 4350165..a15242c 100644 (file)
@@ -21,7 +21,6 @@ import java.util.*;
 
 public class JspCalendar {
     Calendar  calendar = null;
-    Date currentDate;
 
     public JspCalendar() {
        calendar = Calendar.getInstance();