"select user_id, " +
"password" +
"from user_table" +
"where user_id = ?";

こういうのをフォーマットすると、

"select user_id, " + "password" + "from user_table" + "where user_id = ?";

こうなるのが非常に気持ち悪いのですが、
どうにかなりませんか?