removed unused SideEffectBean imlpmentations

This commit is contained in:
Chris Beams
2008-12-17 23:52:20 +00:00
parent 08eeb52e57
commit de7ec2288e
2 changed files with 0 additions and 63 deletions

View File

@@ -1,23 +0,0 @@
package org.springframework.beans.factory.xml;
/**
* Bean that changes state on a business invocation, so that
* we can check whether it's been invoked
* @author Rod Johnson
*/
public class SideEffectBean {
private int count;
public void setCount(int count) {
this.count = count;
}
public int getCount() {
return this.count;
}
public void doWork() {
++count;
}
}