Detected 1 occurrence(s) of ‘\s*pass[word]+\s*[:=]\s*["'][a-z0-9\-_\!\$]+["']‘: ten Faarkrog * @version 1.0 * @date 26. November, 2013 */ public class ConnectionManager { private static ConnectionManager instance; // Localhost private static final String USERNAME = "dbuser"; private static final String PASSWORD = "dbpassword"; private static final String CONN_STRING = "jdbc:mysql://localhost/asdfghj"; /** * Private constructor made so that an […]
↧