Github user isper3at commented on a diff in the pull request:
https://github.com/apache/incubator-rya/pull/245#discussion_r145781500
--- Diff:
extras/indexing/src/main/java/org/apache/rya/api/client/accumulo/AccumuloCreatePeriodicPCJ.java
---
@@ -45,12 +44,12 @@
import
org.apache.rya.periodic.notification.notification.CommandNotification;
import
org.apache.rya.periodic.notification.registration.KafkaNotificationRegistrationClient;
import
org.apache.rya.periodic.notification.serialization.CommandNotificationSerializer;
-import org.openrdf.query.MalformedQueryException;
-import org.openrdf.query.QueryEvaluationException;
-import org.openrdf.repository.RepositoryException;
-import org.openrdf.sail.SailException;
+import org.eclipse.rdf4j.query.MalformedQueryException;
+import org.eclipse.rdf4j.query.QueryEvaluationException;
+import org.eclipse.rdf4j.repository.RepositoryException;
+import org.eclipse.rdf4j.sail.SailException;
-import com.google.common.base.Optional;
+import static java.util.Objects.requireNonNull;
--- End diff --
nit: put the static imports above the non-static imports
---