Browse Source

Add the missing newlines between repeated extension files.

Thomas Van Lenten 6 years ago
parent
commit
3eb2889e9e
1 changed files with 3 additions and 3 deletions
  1. 3 3
      objectivec/GPBUtilities.m

+ 3 - 3
objectivec/GPBUtilities.m

@@ -1949,10 +1949,10 @@ static void AppendTextFormatForMessageExtensionRange(GPBMessage *message,
 
 
       }  // switch(extDataType)
       }  // switch(extDataType)
 
 
-    }  //  for(numValues)
+      // End the line.
+      [toStr appendFormat:@"%@\n", lineEnding];
 
 
-    // End the line.
-    [toStr appendFormat:@"%@\n", lineEnding];
+    }  //  for(numValues)
 
 
   }  // for..in(activeExtensions)
   }  // for..in(activeExtensions)
 }
 }