Detected 1 occurrence(s) of ‘\s*pass[word]+\s*[:=]\s*["'][a-z0-9\-_\!\$]+["']‘: private static String dbURL = "jdbc:mysql://localhost:3306/mydb"; private static String username = "secret"; private static String password = "secret"; private static Connection conn = null; public static void initDbConnection(){ try { conn = DriverManager.getConnection(dbURL, username, password); Class.forName("com.mysql.jdbc.Driver"); } catch (SQLExcept Source: http://pastebin.com/raw.php?i=RHCwpJQP
↧