Skip to content

Instantly share code, notes, and snippets.

View itohro's full-sized avatar

Hiroshi Ito itohro

View GitHub Profile
@itohro
itohro / IntSet used in ConstantIntSet
Last active March 1, 2017 15:05
signature conflicts
package com.gs.fw.common.mithra;
public interface IntSet extends com.gs.collections.api.set.primitive.IntSet, org.eclipse.collections.api.set.primitive.IntSet
{
// COMPILE ERROR:
// 'asLazy()' in 'org.eclipse.collections.api.IntIterable' clashes with
// 'asLazy()' in 'com.gs.collections.api.IntIterable'; methods have unrelated return types
}