Update of /cvsroot/mocklib/mocklib2/input/javasrc/biz/xsoftware/mock2/impl
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31643/input/javasrc/biz/xsoftware/mock2/impl
Modified Files:
MockObjectSuperImpl.java
Log Message:
get rid of eclipse warnings.
Index: MockObjectSuperImpl.java
===================================================================
RCS file: /cvsroot/mocklib/mocklib2/input/javasrc/biz/xsoftware/mock2/impl/MockObjectSuperImpl.java,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** MockObjectSuperImpl.java 16 Feb 2006 15:37:34 -0000 1.4
--- MockObjectSuperImpl.java 17 Feb 2006 15:07:40 -0000 1.5
***************
*** 5,10 ****
import java.util.List;
import java.util.Map;
- import java.util.logging.Level;
- import java.util.logging.Logger;
import biz.xsoftware.mock2.Behavior;
--- 5,8 ----
***************
*** 14,19 ****
public abstract class MockObjectSuperImpl implements MockObject {
! private static final Logger logger = Logger
! .getLogger(MockObjectSuperImpl.class.getName());
private static final long DEFAULT_TIME_OUT = 10000;
--- 12,17 ----
public abstract class MockObjectSuperImpl implements MockObject {
! // private static final Logger logger = Logger
! // .getLogger(MockObjectSuperImpl.class.getName());
private static final long DEFAULT_TIME_OUT = 10000;
***************
*** 38,42 ****
* A map of queues, containing objects to return when methods are called
*/
! private Map<String, List<Object>> methodToReturnVal = new HashMap<String, List<Object>>();
/**
--- 36,40 ----
* A map of queues, containing objects to return when methods are called
*/
! // private Map<String, List<Object>> methodToReturnVal = new HashMap<String, List<Object>>();
/**
***************
*** 44,48 ****
* the method is empty.
*/
! private Map<String, Object> methodToDefaultRetVal = new HashMap<String, Object>();
public CalledMethod expect(String methodName, Class... vargs) {
--- 42,46 ----
* the method is empty.
*/
! // private Map<String, Object> methodToDefaultRetVal = new HashMap<String, Object>();
public CalledMethod expect(String methodName, Class... vargs) {
|