Skip to content

Commit 77d9190

Browse files
committed
fix compile issues
1 parent d969716 commit 77d9190

File tree

2 files changed

+2
-7
lines changed

2 files changed

+2
-7
lines changed

src/main/java/io/rejson/JReJSON.java

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -257,9 +257,4 @@ public Class<? extends Object> type(String key, Path... path) {
257257
throw new java.lang.RuntimeException(rep);
258258
}
259259
}
260-
@Override
261-
public Pipeline pipelined()
262-
{
263-
264-
}
265260
}

src/test/java/io/rejson/ClientTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ public void type1Exception() throws Exception {
185185
c.type("foobar", new Path(".foo[1]"));
186186

187187
JedisPoolConfig conf = new JedisPoolConfig();
188-
conf.setMaxTotal(poolSize);
188+
conf.setMaxTotal(55);
189189
conf.setTestOnBorrow(false);
190190
conf.setTestOnReturn(false);
191191
conf.setTestOnCreate(false);
@@ -199,7 +199,7 @@ public void type1Exception() throws Exception {
199199

200200
JReJSON jReJSON = (JReJSON) pool.getResource();
201201

202-
202+
203203

204204
//Pipeline pipe = jReJSON.pipelined();
205205

0 commit comments

Comments
 (0)