La solución a su problema es realmente muy fácil, está llamando a Statement.executeQuery(String) cuando quiera llamar a DeclaraciónPreparada.executeQuery() -
this.stmt = con.prepareStatement(sql); // Prepares the Statement.
stmt.setInt(1, randNum); // Binds the parameter.
// return this.stmt.executeQuery(sql); // calls Statement#executeQuery
return this.stmt.executeQuery(); // calls your set-up PreparedStatement