We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 28e32b0 commit b53872bCopy full SHA for b53872b
docker-java-transport/src/main/java/com/github/dockerjava/transport/DomainSocket.java
@@ -130,7 +130,9 @@ public void close() throws IOException {
130
* @param path the path to the domain socket
131
* @return a {@link DomainSocket} instance
132
* @throws IOException if the socket cannot be opened
133
+ * @deprecated use {@link UnixSocket#get(String)}
134
*/
135
+ @Deprecated
136
public static DomainSocket get(String path) throws IOException {
137
if (Platform.isMac() || isBsdPlatform()) {
138
return new BsdDomainSocket(path);
0 commit comments