You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@accumulo.apache.org by mm...@apache.org on 2019/02/04 22:04:03 UTC

[accumulo] branch master updated: Add default impl for new method in ScannerBase (#937)

This is an automated email from the ASF dual-hosted git repository.

mmiller pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/accumulo.git


The following commit(s) were added to refs/heads/master by this push:
     new 689c4ba  Add default impl for new method in ScannerBase (#937)
689c4ba is described below

commit 689c4bae45c6d24e859327d198c0daebd2d0d00e
Author: Mike Miller <mm...@apache.org>
AuthorDate: Mon Feb 4 17:03:56 2019 -0500

    Add default impl for new method in ScannerBase (#937)
---
 core/src/main/java/org/apache/accumulo/core/client/ScannerBase.java | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/core/src/main/java/org/apache/accumulo/core/client/ScannerBase.java b/core/src/main/java/org/apache/accumulo/core/client/ScannerBase.java
index cd7b5e9..7d200bf 100644
--- a/core/src/main/java/org/apache/accumulo/core/client/ScannerBase.java
+++ b/core/src/main/java/org/apache/accumulo/core/client/ScannerBase.java
@@ -305,5 +305,7 @@ public interface ScannerBase extends Iterable<Entry<Key,Value>>, AutoCloseable {
    *
    * @since 2.0.0
    */
-  void setExecutionHints(Map<String,String> hints);
+  default void setExecutionHints(Map<String,String> hints) {
+    throw new UnsupportedOperationException();
+  }
 }