Преглед на файлове

TextFormat extension printing fix.

If a proto has multiple extension ranges back to back, don't double
print the first items as they also are the ending range of the
previous.
Thomas Van Lenten преди 6 години
родител
ревизия
af2d4134e0
променени са 1 файла, в които са добавени 1 реда и са изтрити 1 реда
  1. 1 1
      objectivec/GPBUtilities.m

+ 1 - 1
objectivec/GPBUtilities.m

@@ -1865,7 +1865,7 @@ static void AppendTextFormatForMessageExtensionRange(GPBMessage *message,
       // Not there yet.
       continue;
     }
-    if (fieldNumber > end) {
+    if (fieldNumber >= end) {
       // Done.
       break;
     }