WW-992 Remove SubscriptionSave class, which hosted a checkbox prepare method, now obsolete per the Checkbox interceptor

git-svn-id: https://svn.apache.org/repos/asf/struts/struts2/trunk@442358 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Ted Nathan Husted
2006-09-11 21:38:36 +00:00
parent 50f03bdccb
commit f263da2b4f
2 changed files with 0 additions and 18 deletions
@@ -1,18 +0,0 @@
package mailreader2;
/**
* <p> Save a subscriptioin, resetting checkbox in prepare.</p>
*/
public final class SubscriptionSave extends Subscription {
public void prepare() {
super.prepare();
// checkbox workaround
getSubscription().setAutoConnect(false);
}
public String execute() throws Exception {
return save();
}
}