File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
hazelcast-driver/src/main/java/org/jnosql/diana/hazelcast/key Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff 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}
You can’t perform that action at this time.
0 commit comments