Hey guys, The IndexInputSlicer class is a public abstract class with a private member that isn't used anywhere:
public abstract class IndexInputSlicer : IDisposable
{
private readonly Directory outerInstance;
It is useless by definition (it's inaccessible). In recent Java version, there
is no such outerInstance. It's handy in .NET because sometimes we need explicit
access to outer instances (which is silently allowed in Java), so could this be
made at least protected?
Vincent
