Skip to content

Commit 48e921c

Browse files
author
Marcus Linke
committed
Fixed import
1 parent df60310 commit 48e921c

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

src/test/java/com/github/dockerjava/api/model/VolumeBindsTest.java

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
package com.github.dockerjava.api.model;
22

3-
import com.fasterxml.jackson.core.JsonParseException;
43
import com.fasterxml.jackson.databind.JsonMappingException;
54
import com.fasterxml.jackson.databind.ObjectMapper;
6-
import jdk.nashorn.internal.parser.JSONParser;
5+
76
import org.testng.annotations.Test;
87

98
import java.io.IOException;
@@ -26,7 +25,7 @@ public void t() throws IOException {
2625
public void t1() throws IOException {
2726
String s = "{\"/data\": {} }";
2827
ObjectMapper objectMapper = new ObjectMapper();
29-
VolumeBinds volumeBinds = objectMapper.readValue(s, VolumeBinds.class);
28+
objectMapper.readValue(s, VolumeBinds.class);
3029
}
3130

3231

0 commit comments

Comments
 (0)