Update of /cvsroot/mockobjects/mockobjects-java/src/core/com/mockobjects/dynamic
In directory usw-pr-cvs1:/tmp/cvs-serv31876/src/core/com/mockobjects/dynamic
Modified Files:
Mock.java
Log Message:
Fixed some erroneous javadoc comments
Index: Mock.java
===================================================================
RCS file: /cvsroot/mockobjects/mockobjects-java/src/core/com/mockobjects/dynamic/Mock.java,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- Mock.java 31 Oct 2002 17:03:45 -0000 1.6
+++ Mock.java 1 Nov 2002 15:35:40 -0000 1.7
@@ -154,7 +154,7 @@
* @param method
* The name of the method that will be called.
* @param arg
- * An single object that will be compared with predicate same()
+ * An single object that will be compared with predicate eq()
* @param result
* The result that will be returned from this call. Primitive types
* must be wrapped in the equivalent Java object, and will be unwrapped
@@ -197,7 +197,7 @@
* @param method
* The name of the method that will be called.
* @param arg
- * An single object that will be compared with predicate same()
+ * An single object that will be compared with predicate eq()
*/
public void expectVoid(String method, Object arg) {
expectVoid( method, P.args(P.eq(arg)) );
@@ -233,7 +233,7 @@
* @param method
* The name of the method that will be called.
* @param arg
- * An single object that will be compared with predicate same()
+ * An single object that will be compared with predicate eq()
* @param exception
* The exception or error that will be thrown as a result of this call.
*/
|