Github user meiercaleb commented on a diff in the pull request:
https://github.com/apache/incubator-rya/pull/248#discussion_r148105230
--- Diff:
extras/indexing/src/main/java/org/apache/rya/indexing/pcj/matching/AccumuloIndexSetProvider.java
---
@@ -155,9 +152,9 @@ public int size() throws Exception {
*/
private List<ExternalTupleSet> getAccIndices() throws Exception {
- requireNonNull(conf);
- final String tablePrefix =
requireNonNull(conf.get(RdfCloudTripleStoreConfiguration.CONF_TBL_PREFIX));
- final Connector conn =
requireNonNull(ConfigUtils.getConnector(conf));
+ Objects.requireNonNull(conf);
--- End diff --
What was wrong with the static method import?
---