aboutsummaryrefslogtreecommitdiff
path: root/src/google/protobuf/compiler/php
diff options
context:
space:
mode:
authorBrent Shaffer <betterbrent@google.com>2017-07-13 11:29:28 -0700
committerPaul Yang <TeBoring@users.noreply.github.com>2017-07-13 11:29:28 -0700
commitec3f5dcc725c415cf6bbc8325adf731370a3507d (patch)
tree0d88972e77216b65a5531f8a4369e53e05b6aca9 /src/google/protobuf/compiler/php
parent3a0382e9076bdbb7c764080c92f3c2324d852be7 (diff)
downloadprotobuf-ec3f5dcc725c415cf6bbc8325adf731370a3507d.tar.gz
protobuf-ec3f5dcc725c415cf6bbc8325adf731370a3507d.tar.bz2
protobuf-ec3f5dcc725c415cf6bbc8325adf731370a3507d.zip
removes an accidental newline in printing for the php generator (#3333)
Diffstat (limited to 'src/google/protobuf/compiler/php')
-rw-r--r--src/google/protobuf/compiler/php/php_generator.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/google/protobuf/compiler/php/php_generator.cc b/src/google/protobuf/compiler/php/php_generator.cc
index 03aebdb9..e20b89ae 100644
--- a/src/google/protobuf/compiler/php/php_generator.cc
+++ b/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\\GPBWire;\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");
}
}