Intellij keeps on formatting my strings like this, its annoying...
How do I fix it so the lines all line up?
PreparedStatement p = s.prepare(
"select distinct resource, uid, role " +
"from role " +
"where person_uuid=? " +
"order by role, resource, uid");
I.E.:
PreparedStatement p = s.prepare(
"select distinct resource, uid, role " +
"from role " +
"where person_uuid=? " +
"order by role, resource, uid");