removed unused SideEffectBean imlpmentations

git-svn-id: https://src.springframework.org/svn/spring-framework/trunk@460 50f2f4bb-b051-0410-bef5-90022cba6387
This commit is contained in:
Chris Beams
2008-12-17 23:52:20 +00:00
parent 71c1153961
commit 993e58e268
2 changed files with 0 additions and 63 deletions
@@ -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;
}
}