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

removes an accidental newline in printing for the php generator (#3333)

Brent Shaffer преди 8 години
родител
ревизия
ec3f5dcc72
променени са 1 файла, в които са добавени 1 реда и са изтрити 1 реда
  1. 1 1
      src/google/protobuf/compiler/php/php_generator.cc

+ 1 - 1
src/google/protobuf/compiler/php/php_generator.cc

@@ -844,7 +844,7 @@ void GenerateUseDeclaration(bool is_descriptor, io::Printer* printer) {
         "use Google\\Protobuf\\Internal\\GPBType;\n"
         "use Google\\Protobuf\\Internal\\GPBType;\n"
         "use Google\\Protobuf\\Internal\\GPBWire;\n"
         "use Google\\Protobuf\\Internal\\GPBWire;\n"
         "use Google\\Protobuf\\Internal\\RepeatedField;\n"
         "use Google\\Protobuf\\Internal\\RepeatedField;\n"
-        "use Google\\Protobuf\\Internal\\InputStream;\n\n"
+        "use Google\\Protobuf\\Internal\\InputStream;\n"
         "use Google\\Protobuf\\Internal\\GPBUtil;\n\n");
         "use Google\\Protobuf\\Internal\\GPBUtil;\n\n");
   }
   }
 }
 }