Skip to content

Commit 651a860

Browse files
committed
fixes documentation
1 parent d4f71a7 commit 651a860

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

hazelcast-driver/src/main/java/org/jnosql/diana/hazelcast/key/HazelcastBucketManager.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ public interface HazelcastBucketManager extends BucketManager {
3535
* @return the result query
3636
* @throws NullPointerException when there is null query
3737
*/
38-
Collection<Value> query(String query) throws NullPointerException;
38+
Collection<Value> query(String query);
3939

4040
/**
4141
* Executes hazelcast query with named query.
@@ -46,7 +46,7 @@ public interface HazelcastBucketManager extends BucketManager {
4646
* @return the result query
4747
* @throws NullPointerException when there is null query
4848
*/
49-
Collection<Value> query(String query, Map<String, Object> params) throws NullPointerException;
49+
Collection<Value> query(String query, Map<String, Object> params);
5050

5151
/**
5252
* Executes hazelcast query
@@ -57,6 +57,6 @@ public interface HazelcastBucketManager extends BucketManager {
5757
* @return the result query
5858
* @throws NullPointerException when there is null predicate
5959
*/
60-
<K, V> Collection<Value> query(Predicate<K, V> predicate) throws NullPointerException;
60+
<K, V> Collection<Value> query(Predicate<K, V> predicate);
6161

6262
}

0 commit comments

Comments
 (0)