Revision: 10430
Author:   b...@google.com
Date:     Fri Jul  8 07:56:17 2011
Log:      Update 2.4 branch with selective build fixes from trunk.

Review by: mrruss...@google.com
http://code.google.com/p/google-web-toolkit/source/detail?r=10430

Modified:
/releases/2.4/user/src/com/google/web/bindery/requestfactory/shared/SkipInterfaceValidation.java /releases/2.4/user/test/com/google/web/bindery/requestfactory/server/BoxesAndPrimitivesJreTest.java /releases/2.4/user/test/com/google/web/bindery/requestfactory/server/RequestFactoryInterfaceValidatorTest.java

=======================================
--- /releases/2.4/user/src/com/google/web/bindery/requestfactory/shared/SkipInterfaceValidation.java Tue Apr 19 06:04:28 2011 +++ /releases/2.4/user/src/com/google/web/bindery/requestfactory/shared/SkipInterfaceValidation.java Fri Jul 8 07:56:17 2011
@@ -30,6 +30,6 @@
  */
 @Documented
 @Retention(RetentionPolicy.RUNTIME)
-@Target(ElementType.METHOD)
+@Target({ElementType.METHOD, ElementType.TYPE})
 public @interface SkipInterfaceValidation {
 }
=======================================
--- /releases/2.4/user/test/com/google/web/bindery/requestfactory/server/BoxesAndPrimitivesJreTest.java Mon Apr 18 16:25:25 2011 +++ /releases/2.4/user/test/com/google/web/bindery/requestfactory/server/BoxesAndPrimitivesJreTest.java Fri Jul 8 07:56:17 2011
@@ -24,6 +24,7 @@
 import com.google.web.bindery.requestfactory.shared.Request;
 import com.google.web.bindery.requestfactory.shared.RequestContext;
 import com.google.web.bindery.requestfactory.shared.Service;
+import com.google.web.bindery.requestfactory.shared.SkipInterfaceValidation;

 import java.util.Arrays;
 import java.util.logging.Logger;
@@ -32,6 +33,7 @@
* A JRE version of {@link BoxesAndPrimitivesTest} with additional validation
  * tests.
  */
+@SkipInterfaceValidation
 public class BoxesAndPrimitivesJreTest extends BoxesAndPrimitivesTest {

   @Service(ServiceImpl.class)
=======================================
--- /releases/2.4/user/test/com/google/web/bindery/requestfactory/server/RequestFactoryInterfaceValidatorTest.java Sat Jun 11 03:17:07 2011 +++ /releases/2.4/user/test/com/google/web/bindery/requestfactory/server/RequestFactoryInterfaceValidatorTest.java Fri Jul 8 07:56:17 2011
@@ -42,6 +42,7 @@
 /**
  * JRE tests for {@link RequestFactoryInterfaceValidator}.
  */
+@SkipInterfaceValidation
 public class RequestFactoryInterfaceValidatorTest extends TestCase {
   static class ClinitEntity {
static ClinitEntity findClinitEntity(@SuppressWarnings("unused") String key) {

--
http://groups.google.com/group/Google-Web-Toolkit-Contributors

Reply via email to