Fix funky formatting.

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/fileupload/trunk@1565248 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/src/main/java/org/apache/commons/fileupload/MultipartStream.java b/src/main/java/org/apache/commons/fileupload/MultipartStream.java
index 15291ec..bb13958 100644
--- a/src/main/java/org/apache/commons/fileupload/MultipartStream.java
+++ b/src/main/java/org/apache/commons/fileupload/MultipartStream.java
@@ -702,9 +702,7 @@
         int first;
         int match = 0;
         int maxpos = tail - boundaryLength;
-        for (first = head;
-        (first <= maxpos) && (match != boundaryLength);
-        first++) {
+        for (first = head; (first <= maxpos) && (match != boundaryLength); first++) {
             first = findByte(boundary[0], first);
             if (first == -1 || (first > maxpos)) {
                 return -1;