We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent df60310 commit 48e921cCopy full SHA for 48e921c
src/test/java/com/github/dockerjava/api/model/VolumeBindsTest.java
@@ -1,9 +1,8 @@
1
package com.github.dockerjava.api.model;
2
3
-import com.fasterxml.jackson.core.JsonParseException;
4
import com.fasterxml.jackson.databind.JsonMappingException;
5
import com.fasterxml.jackson.databind.ObjectMapper;
6
-import jdk.nashorn.internal.parser.JSONParser;
+
7
import org.testng.annotations.Test;
8
9
import java.io.IOException;
@@ -26,7 +25,7 @@ public void t() throws IOException {
26
25
public void t1() throws IOException {
27
String s = "{\"/data\": {} }";
28
ObjectMapper objectMapper = new ObjectMapper();
29
- VolumeBinds volumeBinds = objectMapper.readValue(s, VolumeBinds.class);
+ objectMapper.readValue(s, VolumeBinds.class);
30
}
31
32
0 commit comments