没有这样的方法错误:ImmutableList.copyOf()
我正在使用Guava-05-snapshot,Sun的JDK 1.6代码在执行这个片段时爆炸了:
List<String> badpasswords = Lists.newArrayList( Password.badWords);
Collections.sort(badpasswords);
ImmutableList<String> tmp = ImmutableList.copyOf(badpasswords);
特别是在ImmutableList.copyOf()调用上。这个代码已经工作了几个月,使用旧的Google-Collections代码。
java.lang.NoSuchMethodError: com.google.common.collect.ImmutableList.copyOf(Ljava/util/Collection;)Lcom/google/common/collect/ImmutableList;
是可写数组的创建,排序完美地工作。但尝试将数组转换为失败。Password.badWords
ImmutableSet<String>
ImmutableList