Sadly Singleton
Here is some code I came across today:
public class SingletonWannabe
{
private static String SERVER_URL;
private static int port;
private static String protocol;
public SingletonWannabe(String url, int port, String protocol) {
this.SERVER_URL = url;
this.port = port;
this.protocol = protocol;
}
public static String getServerUrl() {
return SERVER_URL;
}
public static int getPort() {
return port;
}
public static String getProtocol() {
return protocol;
}
}
This was being used as a singleton in an application 🙁
Categories: Bad Code