Style fix: leave brackets around for() one-liners

This commit is contained in:
str4d
2013-12-04 03:51:02 +00:00
parent a3fa48dcbe
commit c180292358
7 changed files with 28 additions and 14 deletions

View File

@@ -421,12 +421,14 @@ public class WebMail extends HttpServlet
return;
}
}
for( MailPart part : mailPart.parts )
for( MailPart part : mailPart.parts ) {
showPart( out, part, level + 1, html );
}
}
else if( mailPart.message ) {
for( MailPart part : mailPart.parts )
for( MailPart part : mailPart.parts ) {
showPart( out, part, level + 1, html );
}
}
else {
boolean showBody = false;