We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents f6ef1dd + c176263 commit c4069fcCopy full SHA for c4069fc
src/main/java/com/github/dockerjava/client/command/PullImageCmd.java
@@ -71,13 +71,6 @@ public String toString() {
71
protected ClientResponse impl() {
72
Preconditions.checkNotNull(repository, "Repository was not specified");
73
74
- if (StringUtils.countMatches(repository, ":") == 1) {
75
- String repositoryTag[] = StringUtils.split(repository, ':');
76
- repository = repositoryTag[0];
77
- tag = repositoryTag[1];
78
-
79
- }
80
81
MultivaluedMap<String, String> params = new MultivaluedMapImpl();
82
params.add("tag", tag);
83
params.add("fromImage", repository);
0 commit comments