husted 2004/06/08 09:19:20
Modified: validator project.xml
validator/src/test/org/apache/commons/validator
TestValidator.java ValidatorTestSuite.java
Removed: validator/src/share/org/apache/commons/validator
BSFValidator.java JXPathValidator.java
validator/src/test/org/apache/commons/validator BSFTest.java
JXPathTest.java ObjectBean.java validator-bsf.xml
validator-jxpath.xml
Log:
Reverse application of #29145 and #29205.
Revision Changes Path
1.48 +0 -18 jakarta-commons/validator/project.xml
Index: project.xml
===================================================================
RCS file: /home/cvs/jakarta-commons/validator/project.xml,v
retrieving revision 1.47
retrieving revision 1.48
diff -u -r1.47 -r1.48
--- project.xml 8 Jun 2004 15:12:12 -0000 1.47
+++ project.xml 8 Jun 2004 16:19:20 -0000 1.48
@@ -269,29 +269,11 @@
</dependency>
<dependency>
- <id>commons-jxpath</id>
- <version>1.1</version>
- <url>http://jakarta.apache.org/commons/jxpath.html</url>
- </dependency>
-
- <dependency>
<id>oro</id>
<version>2.0.8</version>
<url>http://jakarta.apache.org/oro/</url>
</dependency>
- <dependency>
- <id>bsf</id>
- <version>2.3.0</version>
- <url>http://jakarta.apache.org/bsf/index.html</url>
- </dependency>
-
- <dependency>
- <id>bsh</id>
- <version>2.0b1</version>
- <url>http://www.beanshell.org/index.html</url>
- </dependency>
-
<dependency>
<id>xml-apis</id>
<version>2.0.2</version>
1.15 +5 -7
jakarta-commons/validator/src/test/org/apache/commons/validator/TestValidator.java
Index: TestValidator.java
===================================================================
RCS file:
/home/cvs/jakarta-commons/validator/src/test/org/apache/commons/validator/TestValidator.java,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -r1.14 -r1.15
--- TestValidator.java 21 Feb 2004 17:10:30 -0000 1.14
+++ TestValidator.java 8 Jun 2004 16:19:20 -0000 1.15
@@ -33,8 +33,7 @@
* an exception if the value of the argument is "CHECKED", and a
* ValidatorException otherwise.
*
- * @param value string which selects type of exception to generate
- * @throws RuntimeException with "RUNTIME-EXCEPTION as message"
+ * @throws RuntimeException with "RUNTIME-EXCEPTION as message"
* if value is "RUNTIME"
* @throws Exception with "CHECKED-EXCEPTION" as message
* if value is "CHECKED"
@@ -63,8 +62,7 @@
/**
* Checks if the field is required.
*
- * @param value The value validation is being performed on.
- * @return boolean If the field isn't <code>null</code> and
+ * @return boolean If the field isn't <code>null</code> and
* has a length greater than zero, <code>true</code> is returned.
* Otherwise <code>false</code>.
*/
1.19 +4 -6
jakarta-commons/validator/src/test/org/apache/commons/validator/ValidatorTestSuite.java
Index: ValidatorTestSuite.java
===================================================================
RCS file:
/home/cvs/jakarta-commons/validator/src/test/org/apache/commons/validator/ValidatorTestSuite.java,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -r1.18 -r1.19
--- ValidatorTestSuite.java 8 Jun 2004 15:05:38 -0000 1.18
+++ ValidatorTestSuite.java 8 Jun 2004 16:19:20 -0000 1.19
@@ -40,7 +40,6 @@
public static Test suite() {
TestSuite suite = new TestSuite();
- suite.addTest(BSFTest.suite());
suite.addTest(RequiredNameTest.suite());
suite.addTest(RequiredIfTest.suite());
suite.addTest(MultipleTests.suite());
@@ -61,8 +60,7 @@
suite.addTestSuite(FlagsTest.class);
suite.addTestSuite(ExceptionTest.class);
suite.addTest(UrlTest.suite());
- suite.addTest(JXPathTest.suite());
-
+
return suite;
}
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]