Discussion:
GWT 2.8.2 upgrade errors with Guava-gwt
BM
2018-01-02 17:22:25 UTC
Permalink
We recently upgraded our project from GWT 2.6.1 to GWT 2.8.2.

We running java version: 1.8.0_144
Guava-gwt: 15

Getting following errors during compilation.

ERROR] Errors in
'jar:file:/Users/XXXX/.m2/repository/com/google/guava/guava-gwt/15.0/guava-gwt-15.0.jar!/com/google/common/collect/super/com/google/common/collect/GwtPlatform.java'
[INFO] [ERROR] Line 38: The method createFrom(T[], int) is undefined
for the type Array
[INFO] Tracing compile failure path for type
'com.google.common.collect.GwtPlatform'
[INFO] [ERROR] Errors in
'jar:file:/Users/XXXX/.m2/repository/com/google/guava/guava-gwt/15.0/guava-gwt-15.0.jar!/com/google/common/collect/super/com/google/common/collect/GwtPlatform.java'
[INFO] [ERROR] Line 38: The method createFrom(T[], int) is
undefined for the type Array
[INFO] [ERROR] Hint: Your source appears not to live underneath a
subpackage called 'client'; no problem, but you'll need to use the <source>
directive in your module to make it accessible
[INFO] [ERROR] Errors in
'jar:file:/Users/XXXX/.m2/repository/com/google/guava/guava-gwt/15.0/guava-gwt-15.0.jar!/com/google/common/collect/StandardTable.java'
[INFO] [ERROR] Line 467: The method removeIf(Predicate<? super
Map.Entry<R,V>>) in the type Collection<Map.Entry<R,V>> is not applicable
for the arguments (Predicate<Object>)
[INFO] [ERROR] Line 467: Type mismatch: cannot convert from
Predicate<Object> to Predicate<? super Map.Entry<R,V>>
[INFO] [ERROR] Line 487: The method removeIf(Predicate<? super
Map.Entry<R,V>>) in the type Collection<Map.Entry<R,V>> is not applicable
for the arguments (Predicate<capture#13-of ?>)
[INFO] [ERROR] Line 487: Type mismatch: cannot convert from
Predicate<capture#13-of ?> to Predicate<? super Map.Entry<R,V>>
[INFO] [ERROR] Line 533: The method removeIf(Predicate<? super R>) in
the type Collection<R> is not applicable for the arguments
(Predicate<Map.Entry<R,?>>)
[INFO] [ERROR] Line 548: The method removeIf(Predicate<? super V>) in
the type Collection<V> is not applicable for the arguments
(Predicate<Map.Entry<?,V>>)
[INFO] [ERROR] Line 552: The method removeIf(Predicate<? super V>) in
the type Collection<V> is not applicable for the arguments
(Predicate<Map.Entry<?,V>>)
[INFO] [ERROR] Line 556: The method removeIf(Predicate<? super V>) in
the type Collection<V> is not applicable for the arguments
(Predicate<Map.Entry<?,V>>)
[INFO] Tracing compile failure path for type
'com.google.common.collect.StandardTable'
[INFO] [ERROR] Errors in
'jar:file:/Users/XXXX/.m2/repository/com/google/guava/guava-gwt/15.0/guava-gwt-15.0.jar!/com/google/common/collect/StandardTable.java'
[INFO] [ERROR] Line 556: The method removeIf(Predicate<? super V>)
in the type Collection<V> is not applicable for the arguments
(Predicate<Map.Entry<?,V>>)
[INFO] [ERROR] Line 487: The method removeIf(Predicate<? super
Map.Entry<R,V>>) in the type Collection<Map.Entry<R,V>> is not applicable
for the arguments (Predicate<capture#13-of ?>)
[INFO] [ERROR] Line 467: Type mismatch: cannot convert from
Predicate<Object> to Predicate<? super Map.Entry<R,V>>
[INFO] [ERROR] Line 467: The method removeIf(Predicate<? super
Map.Entry<R,V>>) in the type Collection<Map.Entry<R,V>> is not applicable
for the arguments (Predicate<Object>)
[INFO] [ERROR] Line 487: Type mismatch: cannot convert from
Predicate<capture#13-of ?> to Predicate<? super Map.Entry<R,V>>
[INFO] [ERROR] Line 533: The method removeIf(Predicate<? super R>)
in the type Collection<R> is not applicable for the arguments
(Predicate<Map.Entry<R,?>>)
[INFO] [ERROR] Line 548: The method removeIf(Predicate<? super V>)
in the type Collection<V> is not applicable for the arguments
(Predicate<Map.Entry<?,V>>)
[INFO] [ERROR] Line 552: The method removeIf(Predicate<? super V>)
in the type Collection<V> is not applicable for the arguments
(Predicate<Map.Entry<?,V>>)


Any idea what's causing this? I haven't found any much info on this.

Thank you in advance.
--
You received this message because you are subscribed to the Google Groups "GWT Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolkit+***@googlegroups.com.
To post to this group, send email to google-web-***@googlegroups.com.
Visit this group at https://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.
Colin Alworth
2018-01-02 17:43:04 UTC
Permalink
You are using latest GWT, but ancient Guava. Upgrade your Guava version to
something more recent, and this will go away.
Post by BM
We recently upgraded our project from GWT 2.6.1 to GWT 2.8.2.
We running java version: 1.8.0_144
Guava-gwt: 15
Getting following errors during compilation.
ERROR] Errors in
'jar:file:/Users/XXXX/.m2/repository/com/google/guava/guava-gwt/15.0/guava-gwt-15.0.jar!/com/google/common/collect/super/com/google/common/collect/GwtPlatform.java'
[INFO] [ERROR] Line 38: The method createFrom(T[], int) is undefined
for the type Array
[INFO] Tracing compile failure path for type
'com.google.common.collect.GwtPlatform'
[INFO] [ERROR] Errors in
'jar:file:/Users/XXXX/.m2/repository/com/google/guava/guava-gwt/15.0/guava-gwt-15.0.jar!/com/google/common/collect/super/com/google/common/collect/GwtPlatform.java'
[INFO] [ERROR] Line 38: The method createFrom(T[], int) is
undefined for the type Array
[INFO] [ERROR] Hint: Your source appears not to live underneath a
subpackage called 'client'; no problem, but you'll need to use the <source>
directive in your module to make it accessible
[INFO] [ERROR] Errors in
'jar:file:/Users/XXXX/.m2/repository/com/google/guava/guava-gwt/15.0/guava-gwt-15.0.jar!/com/google/common/collect/StandardTable.java'
[INFO] [ERROR] Line 467: The method removeIf(Predicate<? super
Map.Entry<R,V>>) in the type Collection<Map.Entry<R,V>> is not applicable
for the arguments (Predicate<Object>)
[INFO] [ERROR] Line 467: Type mismatch: cannot convert from
Predicate<Object> to Predicate<? super Map.Entry<R,V>>
[INFO] [ERROR] Line 487: The method removeIf(Predicate<? super
Map.Entry<R,V>>) in the type Collection<Map.Entry<R,V>> is not applicable
for the arguments (Predicate<capture#13-of ?>)
[INFO] [ERROR] Line 487: Type mismatch: cannot convert from
Predicate<capture#13-of ?> to Predicate<? super Map.Entry<R,V>>
[INFO] [ERROR] Line 533: The method removeIf(Predicate<? super R>)
in the type Collection<R> is not applicable for the arguments
(Predicate<Map.Entry<R,?>>)
[INFO] [ERROR] Line 548: The method removeIf(Predicate<? super V>)
in the type Collection<V> is not applicable for the arguments
(Predicate<Map.Entry<?,V>>)
[INFO] [ERROR] Line 552: The method removeIf(Predicate<? super V>)
in the type Collection<V> is not applicable for the arguments
(Predicate<Map.Entry<?,V>>)
[INFO] [ERROR] Line 556: The method removeIf(Predicate<? super V>)
in the type Collection<V> is not applicable for the arguments
(Predicate<Map.Entry<?,V>>)
[INFO] Tracing compile failure path for type
'com.google.common.collect.StandardTable'
[INFO] [ERROR] Errors in
'jar:file:/Users/XXXX/.m2/repository/com/google/guava/guava-gwt/15.0/guava-gwt-15.0.jar!/com/google/common/collect/StandardTable.java'
[INFO] [ERROR] Line 556: The method removeIf(Predicate<? super
V>) in the type Collection<V> is not applicable for the arguments
(Predicate<Map.Entry<?,V>>)
[INFO] [ERROR] Line 487: The method removeIf(Predicate<? super
Map.Entry<R,V>>) in the type Collection<Map.Entry<R,V>> is not applicable
for the arguments (Predicate<capture#13-of ?>)
[INFO] [ERROR] Line 467: Type mismatch: cannot convert from
Predicate<Object> to Predicate<? super Map.Entry<R,V>>
[INFO] [ERROR] Line 467: The method removeIf(Predicate<? super
Map.Entry<R,V>>) in the type Collection<Map.Entry<R,V>> is not applicable
for the arguments (Predicate<Object>)
[INFO] [ERROR] Line 487: Type mismatch: cannot convert from
Predicate<capture#13-of ?> to Predicate<? super Map.Entry<R,V>>
[INFO] [ERROR] Line 533: The method removeIf(Predicate<? super
R>) in the type Collection<R> is not applicable for the arguments
(Predicate<Map.Entry<R,?>>)
[INFO] [ERROR] Line 548: The method removeIf(Predicate<? super
V>) in the type Collection<V> is not applicable for the arguments
(Predicate<Map.Entry<?,V>>)
[INFO] [ERROR] Line 552: The method removeIf(Predicate<? super
V>) in the type Collection<V> is not applicable for the arguments
(Predicate<Map.Entry<?,V>>)
Any idea what's causing this? I haven't found any much info on this.
Thank you in advance.
--
You received this message because you are subscribed to the Google Groups "GWT Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolkit+***@googlegroups.com.
To post to this group, send email to google-web-***@googlegroups.com.
Visit this group at https://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.
BM
2018-01-02 17:49:09 UTC
Permalink
Ok.. I tried their 23.6-jre
<https://mvnrepository.com/artifact/com.google.guava/guava-gwt/23.6-jre>and
got the same errors. But will trying switching to stable version like 21
and update here.

Thanks for the reply.
Post by Colin Alworth
You are using latest GWT, but ancient Guava. Upgrade your Guava version to
something more recent, and this will go away.
Post by BM
We recently upgraded our project from GWT 2.6.1 to GWT 2.8.2.
We running java version: 1.8.0_144
Guava-gwt: 15
Getting following errors during compilation.
ERROR] Errors in
'jar:file:/Users/XXXX/.m2/repository/com/google/guava/guava-gwt/15.0/guava-gwt-15.0.jar!/com/google/common/collect/super/com/google/common/collect/GwtPlatform.java'
[INFO] [ERROR] Line 38: The method createFrom(T[], int) is
undefined for the type Array
[INFO] Tracing compile failure path for type
'com.google.common.collect.GwtPlatform'
[INFO] [ERROR] Errors in
'jar:file:/Users/XXXX/.m2/repository/com/google/guava/guava-gwt/15.0/guava-gwt-15.0.jar!/com/google/common/collect/super/com/google/common/collect/GwtPlatform.java'
[INFO] [ERROR] Line 38: The method createFrom(T[], int) is
undefined for the type Array
[INFO] [ERROR] Hint: Your source appears not to live underneath a
subpackage called 'client'; no problem, but you'll need to use the <source>
directive in your module to make it accessible
[INFO] [ERROR] Errors in
'jar:file:/Users/XXXX/.m2/repository/com/google/guava/guava-gwt/15.0/guava-gwt-15.0.jar!/com/google/common/collect/StandardTable.java'
[INFO] [ERROR] Line 467: The method removeIf(Predicate<? super
Map.Entry<R,V>>) in the type Collection<Map.Entry<R,V>> is not applicable
for the arguments (Predicate<Object>)
[INFO] [ERROR] Line 467: Type mismatch: cannot convert from
Predicate<Object> to Predicate<? super Map.Entry<R,V>>
[INFO] [ERROR] Line 487: The method removeIf(Predicate<? super
Map.Entry<R,V>>) in the type Collection<Map.Entry<R,V>> is not applicable
for the arguments (Predicate<capture#13-of ?>)
[INFO] [ERROR] Line 487: Type mismatch: cannot convert from
Predicate<capture#13-of ?> to Predicate<? super Map.Entry<R,V>>
[INFO] [ERROR] Line 533: The method removeIf(Predicate<? super R>)
in the type Collection<R> is not applicable for the arguments
(Predicate<Map.Entry<R,?>>)
[INFO] [ERROR] Line 548: The method removeIf(Predicate<? super V>)
in the type Collection<V> is not applicable for the arguments
(Predicate<Map.Entry<?,V>>)
[INFO] [ERROR] Line 552: The method removeIf(Predicate<? super V>)
in the type Collection<V> is not applicable for the arguments
(Predicate<Map.Entry<?,V>>)
[INFO] [ERROR] Line 556: The method removeIf(Predicate<? super V>)
in the type Collection<V> is not applicable for the arguments
(Predicate<Map.Entry<?,V>>)
[INFO] Tracing compile failure path for type
'com.google.common.collect.StandardTable'
[INFO] [ERROR] Errors in
'jar:file:/Users/XXXX/.m2/repository/com/google/guava/guava-gwt/15.0/guava-gwt-15.0.jar!/com/google/common/collect/StandardTable.java'
[INFO] [ERROR] Line 556: The method removeIf(Predicate<? super
V>) in the type Collection<V> is not applicable for the arguments
(Predicate<Map.Entry<?,V>>)
[INFO] [ERROR] Line 487: The method removeIf(Predicate<? super
Map.Entry<R,V>>) in the type Collection<Map.Entry<R,V>> is not applicable
for the arguments (Predicate<capture#13-of ?>)
[INFO] [ERROR] Line 467: Type mismatch: cannot convert from
Predicate<Object> to Predicate<? super Map.Entry<R,V>>
[INFO] [ERROR] Line 467: The method removeIf(Predicate<? super
Map.Entry<R,V>>) in the type Collection<Map.Entry<R,V>> is not applicable
for the arguments (Predicate<Object>)
[INFO] [ERROR] Line 487: Type mismatch: cannot convert from
Predicate<capture#13-of ?> to Predicate<? super Map.Entry<R,V>>
[INFO] [ERROR] Line 533: The method removeIf(Predicate<? super
R>) in the type Collection<R> is not applicable for the arguments
(Predicate<Map.Entry<R,?>>)
[INFO] [ERROR] Line 548: The method removeIf(Predicate<? super
V>) in the type Collection<V> is not applicable for the arguments
(Predicate<Map.Entry<?,V>>)
[INFO] [ERROR] Line 552: The method removeIf(Predicate<? super
V>) in the type Collection<V> is not applicable for the arguments
(Predicate<Map.Entry<?,V>>)
Any idea what's causing this? I haven't found any much info on this.
Thank you in advance.
--
You received this message because you are subscribed to the Google Groups "GWT Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolkit+***@googlegroups.com.
To post to this group, send email to google-web-***@googlegroups.com.
Visit this group at https://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.
Colin Alworth
2018-01-02 18:26:29 UTC
Permalink
I can vouch for 21 at least, that's what I'm using.

However, if you are seeing the exact same error as before, then you might
have more than one copy of guava on your classpath, double check the error
or share it here so we can take a closer look to see what else might be
awry.
Post by BM
Ok.. I tried their 23.6-jre
<https://mvnrepository.com/artifact/com.google.guava/guava-gwt/23.6-jre>and
got the same errors. But will trying switching to stable version like 21
and update here.
Thanks for the reply.
Post by Colin Alworth
You are using latest GWT, but ancient Guava. Upgrade your Guava version
to something more recent, and this will go away.
Post by BM
We recently upgraded our project from GWT 2.6.1 to GWT 2.8.2.
We running java version: 1.8.0_144
Guava-gwt: 15
Getting following errors during compilation.
ERROR] Errors in
'jar:file:/Users/XXXX/.m2/repository/com/google/guava/guava-gwt/15.0/guava-gwt-15.0.jar!/com/google/common/collect/super/com/google/common/collect/GwtPlatform.java'
[INFO] [ERROR] Line 38: The method createFrom(T[], int) is
undefined for the type Array
[INFO] Tracing compile failure path for type
'com.google.common.collect.GwtPlatform'
[INFO] [ERROR] Errors in
'jar:file:/Users/XXXX/.m2/repository/com/google/guava/guava-gwt/15.0/guava-gwt-15.0.jar!/com/google/common/collect/super/com/google/common/collect/GwtPlatform.java'
[INFO] [ERROR] Line 38: The method createFrom(T[], int) is
undefined for the type Array
[INFO] [ERROR] Hint: Your source appears not to live underneath a
subpackage called 'client'; no problem, but you'll need to use the <source>
directive in your module to make it accessible
[INFO] [ERROR] Errors in
'jar:file:/Users/XXXX/.m2/repository/com/google/guava/guava-gwt/15.0/guava-gwt-15.0.jar!/com/google/common/collect/StandardTable.java'
[INFO] [ERROR] Line 467: The method removeIf(Predicate<? super
Map.Entry<R,V>>) in the type Collection<Map.Entry<R,V>> is not applicable
for the arguments (Predicate<Object>)
[INFO] [ERROR] Line 467: Type mismatch: cannot convert from
Predicate<Object> to Predicate<? super Map.Entry<R,V>>
[INFO] [ERROR] Line 487: The method removeIf(Predicate<? super
Map.Entry<R,V>>) in the type Collection<Map.Entry<R,V>> is not applicable
for the arguments (Predicate<capture#13-of ?>)
[INFO] [ERROR] Line 487: Type mismatch: cannot convert from
Predicate<capture#13-of ?> to Predicate<? super Map.Entry<R,V>>
[INFO] [ERROR] Line 533: The method removeIf(Predicate<? super R>)
in the type Collection<R> is not applicable for the arguments
(Predicate<Map.Entry<R,?>>)
[INFO] [ERROR] Line 548: The method removeIf(Predicate<? super V>)
in the type Collection<V> is not applicable for the arguments
(Predicate<Map.Entry<?,V>>)
[INFO] [ERROR] Line 552: The method removeIf(Predicate<? super V>)
in the type Collection<V> is not applicable for the arguments
(Predicate<Map.Entry<?,V>>)
[INFO] [ERROR] Line 556: The method removeIf(Predicate<? super V>)
in the type Collection<V> is not applicable for the arguments
(Predicate<Map.Entry<?,V>>)
[INFO] Tracing compile failure path for type
'com.google.common.collect.StandardTable'
[INFO] [ERROR] Errors in
'jar:file:/Users/XXXX/.m2/repository/com/google/guava/guava-gwt/15.0/guava-gwt-15.0.jar!/com/google/common/collect/StandardTable.java'
[INFO] [ERROR] Line 556: The method removeIf(Predicate<? super
V>) in the type Collection<V> is not applicable for the arguments
(Predicate<Map.Entry<?,V>>)
[INFO] [ERROR] Line 487: The method removeIf(Predicate<? super
Map.Entry<R,V>>) in the type Collection<Map.Entry<R,V>> is not applicable
for the arguments (Predicate<capture#13-of ?>)
[INFO] [ERROR] Line 467: Type mismatch: cannot convert from
Predicate<Object> to Predicate<? super Map.Entry<R,V>>
[INFO] [ERROR] Line 467: The method removeIf(Predicate<? super
Map.Entry<R,V>>) in the type Collection<Map.Entry<R,V>> is not applicable
for the arguments (Predicate<Object>)
[INFO] [ERROR] Line 487: Type mismatch: cannot convert from
Predicate<capture#13-of ?> to Predicate<? super Map.Entry<R,V>>
[INFO] [ERROR] Line 533: The method removeIf(Predicate<? super
R>) in the type Collection<R> is not applicable for the arguments
(Predicate<Map.Entry<R,?>>)
[INFO] [ERROR] Line 548: The method removeIf(Predicate<? super
V>) in the type Collection<V> is not applicable for the arguments
(Predicate<Map.Entry<?,V>>)
[INFO] [ERROR] Line 552: The method removeIf(Predicate<? super
V>) in the type Collection<V> is not applicable for the arguments
(Predicate<Map.Entry<?,V>>)
Any idea what's causing this? I haven't found any much info on this.
Thank you in advance.
--
You received this message because you are subscribed to the Google Groups "GWT Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolkit+***@googlegroups.com.
To post to this group, send email to google-web-***@googlegroups.com.
Visit this group at https://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.
BM
2018-01-02 19:49:27 UTC
Permalink
Yeah.. It worked with version 21.

Thanks.

Also the compilation passed but my build failed and suggested I need to add
following in my gwt.xml

<set-configuration-property name='xsiframe.failIfScriptTag' value='FALSE'/>
Post by Colin Alworth
I can vouch for 21 at least, that's what I'm using.
However, if you are seeing the exact same error as before, then you might
have more than one copy of guava on your classpath, double check the error
or share it here so we can take a closer look to see what else might be
awry.
Post by BM
Ok.. I tried their 23.6-jre
<https://mvnrepository.com/artifact/com.google.guava/guava-gwt/23.6-jre>and
got the same errors. But will trying switching to stable version like 21
and update here.
Thanks for the reply.
Post by Colin Alworth
You are using latest GWT, but ancient Guava. Upgrade your Guava version
to something more recent, and this will go away.
Post by BM
We recently upgraded our project from GWT 2.6.1 to GWT 2.8.2.
We running java version: 1.8.0_144
Guava-gwt: 15
Getting following errors during compilation.
ERROR] Errors in
'jar:file:/Users/XXXX/.m2/repository/com/google/guava/guava-gwt/15.0/guava-gwt-15.0.jar!/com/google/common/collect/super/com/google/common/collect/GwtPlatform.java'
[INFO] [ERROR] Line 38: The method createFrom(T[], int) is
undefined for the type Array
[INFO] Tracing compile failure path for type
'com.google.common.collect.GwtPlatform'
[INFO] [ERROR] Errors in
'jar:file:/Users/XXXX/.m2/repository/com/google/guava/guava-gwt/15.0/guava-gwt-15.0.jar!/com/google/common/collect/super/com/google/common/collect/GwtPlatform.java'
[INFO] [ERROR] Line 38: The method createFrom(T[], int) is
undefined for the type Array
[INFO] [ERROR] Hint: Your source appears not to live underneath a
subpackage called 'client'; no problem, but you'll need to use the <source>
directive in your module to make it accessible
[INFO] [ERROR] Errors in
'jar:file:/Users/XXXX/.m2/repository/com/google/guava/guava-gwt/15.0/guava-gwt-15.0.jar!/com/google/common/collect/StandardTable.java'
[INFO] [ERROR] Line 467: The method removeIf(Predicate<? super
Map.Entry<R,V>>) in the type Collection<Map.Entry<R,V>> is not applicable
for the arguments (Predicate<Object>)
[INFO] [ERROR] Line 467: Type mismatch: cannot convert from
Predicate<Object> to Predicate<? super Map.Entry<R,V>>
[INFO] [ERROR] Line 487: The method removeIf(Predicate<? super
Map.Entry<R,V>>) in the type Collection<Map.Entry<R,V>> is not applicable
for the arguments (Predicate<capture#13-of ?>)
[INFO] [ERROR] Line 487: Type mismatch: cannot convert from
Predicate<capture#13-of ?> to Predicate<? super Map.Entry<R,V>>
[INFO] [ERROR] Line 533: The method removeIf(Predicate<? super
R>) in the type Collection<R> is not applicable for the arguments
(Predicate<Map.Entry<R,?>>)
[INFO] [ERROR] Line 548: The method removeIf(Predicate<? super
V>) in the type Collection<V> is not applicable for the arguments
(Predicate<Map.Entry<?,V>>)
[INFO] [ERROR] Line 552: The method removeIf(Predicate<? super
V>) in the type Collection<V> is not applicable for the arguments
(Predicate<Map.Entry<?,V>>)
[INFO] [ERROR] Line 556: The method removeIf(Predicate<? super
V>) in the type Collection<V> is not applicable for the arguments
(Predicate<Map.Entry<?,V>>)
[INFO] Tracing compile failure path for type
'com.google.common.collect.StandardTable'
[INFO] [ERROR] Errors in
'jar:file:/Users/XXXX/.m2/repository/com/google/guava/guava-gwt/15.0/guava-gwt-15.0.jar!/com/google/common/collect/StandardTable.java'
[INFO] [ERROR] Line 556: The method removeIf(Predicate<? super
V>) in the type Collection<V> is not applicable for the arguments
(Predicate<Map.Entry<?,V>>)
[INFO] [ERROR] Line 487: The method removeIf(Predicate<? super
Map.Entry<R,V>>) in the type Collection<Map.Entry<R,V>> is not applicable
for the arguments (Predicate<capture#13-of ?>)
[INFO] [ERROR] Line 467: Type mismatch: cannot convert from
Predicate<Object> to Predicate<? super Map.Entry<R,V>>
[INFO] [ERROR] Line 467: The method removeIf(Predicate<? super
Map.Entry<R,V>>) in the type Collection<Map.Entry<R,V>> is not applicable
for the arguments (Predicate<Object>)
[INFO] [ERROR] Line 487: Type mismatch: cannot convert from
Predicate<capture#13-of ?> to Predicate<? super Map.Entry<R,V>>
[INFO] [ERROR] Line 533: The method removeIf(Predicate<? super
R>) in the type Collection<R> is not applicable for the arguments
(Predicate<Map.Entry<R,?>>)
[INFO] [ERROR] Line 548: The method removeIf(Predicate<? super
V>) in the type Collection<V> is not applicable for the arguments
(Predicate<Map.Entry<?,V>>)
[INFO] [ERROR] Line 552: The method removeIf(Predicate<? super
V>) in the type Collection<V> is not applicable for the arguments
(Predicate<Map.Entry<?,V>>)
Any idea what's causing this? I haven't found any much info on this.
Thank you in advance.
--
You received this message because you are subscribed to the Google Groups "GWT Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolkit+***@googlegroups.com.
To post to this group, send email to google-web-***@googlegroups.com.
Visit this group at https://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.
Loading...