Normalise formatting (comments and white space only).

Signed-off-by: Paul Campbell <pcampbell@kemitix.net>
This commit is contained in:
Paul Campbell 2016-01-25 13:20:31 +00:00
parent 6b866a0ddd
commit 04870102a2
2 changed files with 2 additions and 3 deletions

View file

@ -270,7 +270,6 @@ public final class WiserAssertions {
final StringBuilder sb = new StringBuilder();
for (int i = 0; i < mimeMultipart.getCount(); i++) {
Object content = mimeMultipart.getBodyPart(i).getContent();
if (content instanceof MimeMultipart) {
sb.append(getMimeMultipartAsString((MimeMultipart) content));
} else {

View file

@ -15,8 +15,8 @@ import javax.mail.Message;
public class Issue1Test extends AbstractWiserTest {
/**
* Test {@link WiserAssertions#withContentContains(String)} where
* the nested multipart message contains the expected text
* Test {@link WiserAssertions#withContentContains(String)} where the nested
* multi-part message contains the expected text.
*/
@Test
public void shouldParseNestedMultiPartEmails() {