We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 50e8d34 + b6d9441 commit 306c534Copy full SHA for 306c534
src/main/java/redis/clients/jedis/HostAndPort.java
@@ -1,7 +1,11 @@
1
package redis.clients.jedis;
2
3
-public class HostAndPort {
4
- public static final String LOCALHOST_STR = "localhost";
+import java.io.Serializable;
+
5
+public class HostAndPort implements Serializable {
6
+private static final long serialVersionUID = -519876229978427751L;
7
8
+public static final String LOCALHOST_STR = "localhost";
9
10
private String host;
11
private int port;
0 commit comments