We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 55f8eb6 commit 85f5bdfCopy full SHA for 85f5bdf
1 file changed
client-java/controller/src/main/java/org/evomaster/client/java/controller/redis/dsl/RedisSequenceDsl.java
@@ -1,8 +1,5 @@
1
package org.evomaster.client.java.controller.redis.dsl;
2
3
-import org.evomaster.client.java.controller.api.dto.database.operations.RedisInsertionDto;
4
-import java.util.List;
5
-
6
public interface RedisSequenceDsl {
7
8
/**
@@ -13,12 +10,4 @@ public interface RedisSequenceDsl {
13
10
* @return a statement object on which the sequence can be continued or closed
14
11
*/
15
12
RedisStatementDsl set(String key, String value);
16
17
- /**
18
- * Build the DTOs (Data Transfer Object) from this DSL,
19
- * closing it (i.e., not usable any longer).
20
- *
21
- * @return a list of DTOs representing all the insertion Redis commands defined in this DSL.
22
- */
23
- List<RedisInsertionDto> dtos();
24
}
0 commit comments