Index: lams_tool_vote/src/java/org/lamsfoundation/lams/tool/vote/web/VoteLearningForm.java =================================================================== RCS file: /usr/local/cvsroot/lams_tool_vote/src/java/org/lamsfoundation/lams/tool/vote/web/Attic/VoteLearningForm.java,v diff -u -r1.14 -r1.15 --- lams_tool_vote/src/java/org/lamsfoundation/lams/tool/vote/web/VoteLearningForm.java 13 Jun 2006 05:50:20 -0000 1.14 +++ lams_tool_vote/src/java/org/lamsfoundation/lams/tool/vote/web/VoteLearningForm.java 13 Jun 2006 06:04:29 -0000 1.15 @@ -87,12 +87,9 @@ /** The check boxes selected on the first voting screen */ protected String[] checkedVotes; - /** The text of the user's votes, including their free text entry vote */ - protected String[] votes; public void reset(ActionMapping mapping, HttpServletRequest request) { checkedVotes = new String[0]; - votes = new String[0]; } protected void resetUserActions() @@ -644,12 +641,4 @@ this.checkedVotes = checkedVotes; } - public String[] getVotes() { - return votes; - } - - public void setVotes(String[] votes) { - this.votes = votes; - } - }