Adding getDelegate() to directly access delegate. (#3616)

👍
This commit is contained in:
Akash Dwivedi 2016-10-27 15:57:36 -07:00 committed by Charles Allen
parent 78159d7ca4
commit 6a845e1f7b
1 changed files with 5 additions and 0 deletions

View File

@ -87,6 +87,11 @@ public class SegmentInputRow implements InputRow
return delegate.compareTo(row); return delegate.compareTo(row);
} }
public InputRow getDelegate()
{
return delegate;
}
@Override @Override
public String toString() public String toString()
{ {