Skip to content

Commit 8198aca

Browse files
committed
fixup! Issue-456 input configuration should not be altered as it breaks unix socket support
1 parent 8326332 commit 8198aca

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

src/main/java/com/github/dockerjava/core/DockerClientConfig.java

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ public class DockerClientConfig implements Serializable {
6565

6666
private static final String DOCKER_IO_PROPERTIES_PROPERTY = "docker.io.properties";
6767

68-
private URI uri;
68+
private final URI uri;
6969

7070
private final String username, password, email, serverAddress, dockerCfgPath;
7171

@@ -208,10 +208,6 @@ public URI getUri() {
208208
return uri;
209209
}
210210

211-
public void setUri(URI uri) {
212-
this.uri = uri;
213-
}
214-
215211
public RemoteApiVersion getVersion() {
216212
return version;
217213
}

0 commit comments

Comments
 (0)