public interface IConverterLocator<T> extends IClusterable
{
public IConverter<T> getConverter(Class<T> type);
}
doesnt make any sense, it should be
public interface IConverterLocato extends IClusterable
{
public <T> IConverter<T> getConverter(Class<T> type);
}
objections? johan you want to make that change since you worked on
converter generics?
