Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
P
protobuf
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
protobuf
Commits
089aaa99
Commit
089aaa99
authored
Nov 04, 2016
by
Msp
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix message for InvalidProtocolBufferException
parent
7bd11fcb
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
InvalidProtocolBufferException.cs
csharp/src/Google.Protobuf/InvalidProtocolBufferException.cs
+1
-1
InvalidProtocolBufferNanoException.java
...gle/protobuf/nano/InvalidProtocolBufferNanoException.java
+1
-1
No files found.
csharp/src/Google.Protobuf/InvalidProtocolBufferException.cs
View file @
089aaa99
...
...
@@ -61,7 +61,7 @@ namespace Google.Protobuf
{
return
new
InvalidProtocolBufferException
(
"While parsing a protocol message, the input ended unexpectedly "
+
"in the middle of a field. This could mean either tha
n
the "
+
"in the middle of a field. This could mean either tha
t
the "
+
"input has been truncated or that an embedded message "
+
"misreported its own length."
);
}
...
...
javanano/src/main/java/com/google/protobuf/nano/InvalidProtocolBufferNanoException.java
View file @
089aaa99
...
...
@@ -48,7 +48,7 @@ public class InvalidProtocolBufferNanoException extends IOException {
static
InvalidProtocolBufferNanoException
truncatedMessage
()
{
return
new
InvalidProtocolBufferNanoException
(
"While parsing a protocol message, the input ended unexpectedly "
+
"in the middle of a field. This could mean either tha
n
the "
+
"in the middle of a field. This could mean either tha
t
the "
+
"input has been truncated or that an embedded message "
+
"misreported its own length."
);
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment