1 Reply Latest reply on Feb 10, 2014 8:57 AM by jfuerth

    The Errai demo todo list Fails in 2.4.3

    tmcclure0501

      The Errai demo todo list fails when trying to compile:

       

      ERROR] boolean equals(@Nullable Object obj);

      [ERROR] ^

      [ERROR]

      [ERROR] could not parse error message:   symbol:   class Nullable

      [ERROR] location: interface Multimap<K,V>

      [ERROR] where K,V are type-variables:

      [ERROR] K extends Object declared in interface Multimap

      [ERROR] V extends Object declared in interface Multimap

      [ERROR] /home/tmcclure/.m2/repository/com/google/guava/guava-gwt/13.0.1/guava-gwt-13.0.1.jar(com/google/common/collect/Multiset.java):106: error: cannot find symbol

       

      Any ideas?

       

      Tim

        • 1. Re: The Errai demo todo list Fails in 2.4.3
          jfuerth

          Hi Tim,

           

          I just tried a full compile (mvn clean install) of errai-demos/errai-jpa-demo-todo-list on the 2.4 branch. The compile completed successfully. Is it possible that you have made some changes to the project on your end?

           

          Looking at the Guava 13.0.1 source code, the @Nullable annotation referred to in the error message should be a javax.annotation.Nullable. This comes from the javax.annotation:jsr250-api:jar:1.0:provided dependency which is included in the demo's pom.

           

          -Jonathan