Cleanup and documentation

This commit is contained in:
Michael Lieberman
2015-01-20 16:42:43 -05:00
parent 2544ac0c30
commit 864cee9312

View File

@@ -216,14 +216,16 @@ public class AccumuloGraph implements Graph, KeyIndexableGraph, IndexableGraph {
return getScanner(config.getIndexNamesTableName());
}
/**
* @deprecated This is used in a unit test that
* needs to be updated to work with
* {@link VertexIndexTableWrapper}.
* @return
*/
public Scanner getVertexIndexScanner() {
return getScanner(config.getVertexKeyIndexTableName());
}
private Scanner getEdgeIndexScanner() {
return getScanner(config.getEdgeKeyIndexTableName());
}
private BatchWriter getVertexIndexWriter() {
return getWriter(config.getVertexKeyIndexTableName());
}