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
1a57ad8b
Commit
1a57ad8b
authored
Aug 05, 2015
by
Jon Skeet
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Generated code changes for previous commit.
parent
ff334a60
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
19 changed files
with
78 additions
and
234 deletions
+78
-234
Addressbook.cs
csharp/src/AddressBook/Addressbook.cs
+3
-9
Conformance.cs
csharp/src/Google.Protobuf.Conformance/Conformance.cs
+5
-15
MapUnittestProto3.cs
.../src/Google.Protobuf.Test/TestProtos/MapUnittestProto3.cs
+7
-21
UnittestImportProto3.cs
...c/Google.Protobuf.Test/TestProtos/UnittestImportProto3.cs
+1
-3
UnittestImportPublicProto3.cs
...le.Protobuf.Test/TestProtos/UnittestImportPublicProto3.cs
+1
-3
UnittestIssues.cs
csharp/src/Google.Protobuf.Test/TestProtos/UnittestIssues.cs
+10
-30
UnittestProto3.cs
csharp/src/Google.Protobuf.Test/TestProtos/UnittestProto3.cs
+0
-0
UnittestWellKnownTypes.cs
...Google.Protobuf.Test/TestProtos/UnittestWellKnownTypes.cs
+4
-12
DescriptorProtoFile.cs
csharp/src/Google.Protobuf/Reflection/DescriptorProtoFile.cs
+22
-66
Any.cs
csharp/src/Google.Protobuf/WellKnownTypes/Any.cs
+1
-3
Api.cs
csharp/src/Google.Protobuf/WellKnownTypes/Api.cs
+2
-6
Duration.cs
csharp/src/Google.Protobuf/WellKnownTypes/Duration.cs
+1
-3
Empty.cs
csharp/src/Google.Protobuf/WellKnownTypes/Empty.cs
+1
-3
FieldMask.cs
csharp/src/Google.Protobuf/WellKnownTypes/FieldMask.cs
+1
-3
SourceContext.cs
csharp/src/Google.Protobuf/WellKnownTypes/SourceContext.cs
+1
-3
Struct.cs
csharp/src/Google.Protobuf/WellKnownTypes/Struct.cs
+3
-9
Timestamp.cs
csharp/src/Google.Protobuf/WellKnownTypes/Timestamp.cs
+1
-3
Type.cs
csharp/src/Google.Protobuf/WellKnownTypes/Type.cs
+5
-15
Wrappers.cs
csharp/src/Google.Protobuf/WellKnownTypes/Wrappers.cs
+9
-27
No files found.
csharp/src/AddressBook/Addressbook.cs
View file @
1a57ad8b
...
...
@@ -186,10 +186,8 @@ namespace Google.Protobuf.Examples.AddressBook {
public
void
MergeFrom
(
pb
::
CodedInputStream
input
)
{
uint
tag
;
while
(
input
.
ReadTag
(
out
tag
)
)
{
while
(
(
tag
=
input
.
ReadTag
())
!=
0
)
{
switch
(
tag
)
{
case
0
:
throw
pb
::
InvalidProtocolBufferException
.
InvalidTag
();
default
:
if
(
pb
::
WireFormat
.
IsEndGroupTag
(
tag
))
{
return
;
...
...
@@ -334,10 +332,8 @@ namespace Google.Protobuf.Examples.AddressBook {
public
void
MergeFrom
(
pb
::
CodedInputStream
input
)
{
uint
tag
;
while
(
input
.
ReadTag
(
out
tag
)
)
{
while
(
(
tag
=
input
.
ReadTag
())
!=
0
)
{
switch
(
tag
)
{
case
0
:
throw
pb
::
InvalidProtocolBufferException
.
InvalidTag
();
default
:
if
(
pb
::
WireFormat
.
IsEndGroupTag
(
tag
))
{
return
;
...
...
@@ -442,10 +438,8 @@ namespace Google.Protobuf.Examples.AddressBook {
public
void
MergeFrom
(
pb
::
CodedInputStream
input
)
{
uint
tag
;
while
(
input
.
ReadTag
(
out
tag
)
)
{
while
(
(
tag
=
input
.
ReadTag
())
!=
0
)
{
switch
(
tag
)
{
case
0
:
throw
pb
::
InvalidProtocolBufferException
.
InvalidTag
();
default
:
if
(
pb
::
WireFormat
.
IsEndGroupTag
(
tag
))
{
return
;
...
...
csharp/src/Google.Protobuf.Conformance/Conformance.cs
View file @
1a57ad8b
...
...
@@ -318,10 +318,8 @@ namespace Conformance {
public
void
MergeFrom
(
pb
::
CodedInputStream
input
)
{
uint
tag
;
while
(
input
.
ReadTag
(
out
tag
)
)
{
while
(
(
tag
=
input
.
ReadTag
())
!=
0
)
{
switch
(
tag
)
{
case
0
:
throw
pb
::
InvalidProtocolBufferException
.
InvalidTag
();
default
:
if
(
pb
::
WireFormat
.
IsEndGroupTag
(
tag
))
{
return
;
...
...
@@ -556,10 +554,8 @@ namespace Conformance {
public
void
MergeFrom
(
pb
::
CodedInputStream
input
)
{
uint
tag
;
while
(
input
.
ReadTag
(
out
tag
)
)
{
while
(
(
tag
=
input
.
ReadTag
())
!=
0
)
{
switch
(
tag
)
{
case
0
:
throw
pb
::
InvalidProtocolBufferException
.
InvalidTag
();
default
:
if
(
pb
::
WireFormat
.
IsEndGroupTag
(
tag
))
{
return
;
...
...
@@ -1830,10 +1826,8 @@ namespace Conformance {
public
void
MergeFrom
(
pb
::
CodedInputStream
input
)
{
uint
tag
;
while
(
input
.
ReadTag
(
out
tag
)
)
{
while
(
(
tag
=
input
.
ReadTag
())
!=
0
)
{
switch
(
tag
)
{
case
0
:
throw
pb
::
InvalidProtocolBufferException
.
InvalidTag
();
default
:
if
(
pb
::
WireFormat
.
IsEndGroupTag
(
tag
))
{
return
;
...
...
@@ -2259,10 +2253,8 @@ namespace Conformance {
public
void
MergeFrom
(
pb
::
CodedInputStream
input
)
{
uint
tag
;
while
(
input
.
ReadTag
(
out
tag
)
)
{
while
(
(
tag
=
input
.
ReadTag
())
!=
0
)
{
switch
(
tag
)
{
case
0
:
throw
pb
::
InvalidProtocolBufferException
.
InvalidTag
();
default
:
if
(
pb
::
WireFormat
.
IsEndGroupTag
(
tag
))
{
return
;
...
...
@@ -2378,10 +2370,8 @@ namespace Conformance {
public
void
MergeFrom
(
pb
::
CodedInputStream
input
)
{
uint
tag
;
while
(
input
.
ReadTag
(
out
tag
)
)
{
while
(
(
tag
=
input
.
ReadTag
())
!=
0
)
{
switch
(
tag
)
{
case
0
:
throw
pb
::
InvalidProtocolBufferException
.
InvalidTag
();
default
:
if
(
pb
::
WireFormat
.
IsEndGroupTag
(
tag
))
{
return
;
...
...
csharp/src/Google.Protobuf.Test/TestProtos/MapUnittestProto3.cs
View file @
1a57ad8b
...
...
@@ -473,10 +473,8 @@ namespace Google.Protobuf.TestProtos {
public
void
MergeFrom
(
pb
::
CodedInputStream
input
)
{
uint
tag
;
while
(
input
.
ReadTag
(
out
tag
)
)
{
while
(
(
tag
=
input
.
ReadTag
())
!=
0
)
{
switch
(
tag
)
{
case
0
:
throw
pb
::
InvalidProtocolBufferException
.
InvalidTag
();
default
:
if
(
pb
::
WireFormat
.
IsEndGroupTag
(
tag
))
{
return
;
...
...
@@ -647,10 +645,8 @@ namespace Google.Protobuf.TestProtos {
public
void
MergeFrom
(
pb
::
CodedInputStream
input
)
{
uint
tag
;
while
(
input
.
ReadTag
(
out
tag
)
)
{
while
(
(
tag
=
input
.
ReadTag
())
!=
0
)
{
switch
(
tag
)
{
case
0
:
throw
pb
::
InvalidProtocolBufferException
.
InvalidTag
();
default
:
if
(
pb
::
WireFormat
.
IsEndGroupTag
(
tag
))
{
return
;
...
...
@@ -749,10 +745,8 @@ namespace Google.Protobuf.TestProtos {
public
void
MergeFrom
(
pb
::
CodedInputStream
input
)
{
uint
tag
;
while
(
input
.
ReadTag
(
out
tag
)
)
{
while
(
(
tag
=
input
.
ReadTag
())
!=
0
)
{
switch
(
tag
)
{
case
0
:
throw
pb
::
InvalidProtocolBufferException
.
InvalidTag
();
default
:
if
(
pb
::
WireFormat
.
IsEndGroupTag
(
tag
))
{
return
;
...
...
@@ -862,10 +856,8 @@ namespace Google.Protobuf.TestProtos {
public
void
MergeFrom
(
pb
::
CodedInputStream
input
)
{
uint
tag
;
while
(
input
.
ReadTag
(
out
tag
)
)
{
while
(
(
tag
=
input
.
ReadTag
())
!=
0
)
{
switch
(
tag
)
{
case
0
:
throw
pb
::
InvalidProtocolBufferException
.
InvalidTag
();
default
:
if
(
pb
::
WireFormat
.
IsEndGroupTag
(
tag
))
{
return
;
...
...
@@ -1161,10 +1153,8 @@ namespace Google.Protobuf.TestProtos {
public
void
MergeFrom
(
pb
::
CodedInputStream
input
)
{
uint
tag
;
while
(
input
.
ReadTag
(
out
tag
)
)
{
while
(
(
tag
=
input
.
ReadTag
())
!=
0
)
{
switch
(
tag
)
{
case
0
:
throw
pb
::
InvalidProtocolBufferException
.
InvalidTag
();
default
:
if
(
pb
::
WireFormat
.
IsEndGroupTag
(
tag
))
{
return
;
...
...
@@ -1316,10 +1306,8 @@ namespace Google.Protobuf.TestProtos {
public
void
MergeFrom
(
pb
::
CodedInputStream
input
)
{
uint
tag
;
while
(
input
.
ReadTag
(
out
tag
)
)
{
while
(
(
tag
=
input
.
ReadTag
())
!=
0
)
{
switch
(
tag
)
{
case
0
:
throw
pb
::
InvalidProtocolBufferException
.
InvalidTag
();
default
:
if
(
pb
::
WireFormat
.
IsEndGroupTag
(
tag
))
{
return
;
...
...
@@ -1425,10 +1413,8 @@ namespace Google.Protobuf.TestProtos {
public
void
MergeFrom
(
pb
::
CodedInputStream
input
)
{
uint
tag
;
while
(
input
.
ReadTag
(
out
tag
)
)
{
while
(
(
tag
=
input
.
ReadTag
())
!=
0
)
{
switch
(
tag
)
{
case
0
:
throw
pb
::
InvalidProtocolBufferException
.
InvalidTag
();
default
:
if
(
pb
::
WireFormat
.
IsEndGroupTag
(
tag
))
{
return
;
...
...
csharp/src/Google.Protobuf.Test/TestProtos/UnittestImportProto3.cs
View file @
1a57ad8b
...
...
@@ -136,10 +136,8 @@ namespace Google.Protobuf.TestProtos {
public
void
MergeFrom
(
pb
::
CodedInputStream
input
)
{
uint
tag
;
while
(
input
.
ReadTag
(
out
tag
)
)
{
while
(
(
tag
=
input
.
ReadTag
())
!=
0
)
{
switch
(
tag
)
{
case
0
:
throw
pb
::
InvalidProtocolBufferException
.
InvalidTag
();
default
:
if
(
pb
::
WireFormat
.
IsEndGroupTag
(
tag
))
{
return
;
...
...
csharp/src/Google.Protobuf.Test/TestProtos/UnittestImportPublicProto3.cs
View file @
1a57ad8b
...
...
@@ -122,10 +122,8 @@ namespace Google.Protobuf.TestProtos {
public
void
MergeFrom
(
pb
::
CodedInputStream
input
)
{
uint
tag
;
while
(
input
.
ReadTag
(
out
tag
)
)
{
while
(
(
tag
=
input
.
ReadTag
())
!=
0
)
{
switch
(
tag
)
{
case
0
:
throw
pb
::
InvalidProtocolBufferException
.
InvalidTag
();
default
:
if
(
pb
::
WireFormat
.
IsEndGroupTag
(
tag
))
{
return
;
...
...
csharp/src/Google.Protobuf.Test/TestProtos/UnittestIssues.cs
View file @
1a57ad8b
...
...
@@ -139,10 +139,8 @@ namespace UnitTest.Issues.TestProtos {
public
void
MergeFrom
(
pb
::
CodedInputStream
input
)
{
uint
tag
;
while
(
input
.
ReadTag
(
out
tag
)
)
{
while
(
(
tag
=
input
.
ReadTag
())
!=
0
)
{
switch
(
tag
)
{
case
0
:
throw
pb
::
InvalidProtocolBufferException
.
InvalidTag
();
default
:
if
(
pb
::
WireFormat
.
IsEndGroupTag
(
tag
))
{
return
;
...
...
@@ -221,10 +219,8 @@ namespace UnitTest.Issues.TestProtos {
public
void
MergeFrom
(
pb
::
CodedInputStream
input
)
{
uint
tag
;
while
(
input
.
ReadTag
(
out
tag
)
)
{
while
(
(
tag
=
input
.
ReadTag
())
!=
0
)
{
switch
(
tag
)
{
case
0
:
throw
pb
::
InvalidProtocolBufferException
.
InvalidTag
();
default
:
if
(
pb
::
WireFormat
.
IsEndGroupTag
(
tag
))
{
return
;
...
...
@@ -303,10 +299,8 @@ namespace UnitTest.Issues.TestProtos {
public
void
MergeFrom
(
pb
::
CodedInputStream
input
)
{
uint
tag
;
while
(
input
.
ReadTag
(
out
tag
)
)
{
while
(
(
tag
=
input
.
ReadTag
())
!=
0
)
{
switch
(
tag
)
{
case
0
:
throw
pb
::
InvalidProtocolBufferException
.
InvalidTag
();
default
:
if
(
pb
::
WireFormat
.
IsEndGroupTag
(
tag
))
{
return
;
...
...
@@ -444,10 +438,8 @@ namespace UnitTest.Issues.TestProtos {
public
void
MergeFrom
(
pb
::
CodedInputStream
input
)
{
uint
tag
;
while
(
input
.
ReadTag
(
out
tag
)
)
{
while
(
(
tag
=
input
.
ReadTag
())
!=
0
)
{
switch
(
tag
)
{
case
0
:
throw
pb
::
InvalidProtocolBufferException
.
InvalidTag
();
default
:
if
(
pb
::
WireFormat
.
IsEndGroupTag
(
tag
))
{
return
;
...
...
@@ -539,10 +531,8 @@ namespace UnitTest.Issues.TestProtos {
public
void
MergeFrom
(
pb
::
CodedInputStream
input
)
{
uint
tag
;
while
(
input
.
ReadTag
(
out
tag
)
)
{
while
(
(
tag
=
input
.
ReadTag
())
!=
0
)
{
switch
(
tag
)
{
case
0
:
throw
pb
::
InvalidProtocolBufferException
.
InvalidTag
();
default
:
if
(
pb
::
WireFormat
.
IsEndGroupTag
(
tag
))
{
return
;
...
...
@@ -737,10 +727,8 @@ namespace UnitTest.Issues.TestProtos {
public
void
MergeFrom
(
pb
::
CodedInputStream
input
)
{
uint
tag
;
while
(
input
.
ReadTag
(
out
tag
)
)
{
while
(
(
tag
=
input
.
ReadTag
())
!=
0
)
{
switch
(
tag
)
{
case
0
:
throw
pb
::
InvalidProtocolBufferException
.
InvalidTag
();
default
:
if
(
pb
::
WireFormat
.
IsEndGroupTag
(
tag
))
{
return
;
...
...
@@ -869,10 +857,8 @@ namespace UnitTest.Issues.TestProtos {
public
void
MergeFrom
(
pb
::
CodedInputStream
input
)
{
uint
tag
;
while
(
input
.
ReadTag
(
out
tag
)
)
{
while
(
(
tag
=
input
.
ReadTag
())
!=
0
)
{
switch
(
tag
)
{
case
0
:
throw
pb
::
InvalidProtocolBufferException
.
InvalidTag
();
default
:
if
(
pb
::
WireFormat
.
IsEndGroupTag
(
tag
))
{
return
;
...
...
@@ -998,10 +984,8 @@ namespace UnitTest.Issues.TestProtos {
public
void
MergeFrom
(
pb
::
CodedInputStream
input
)
{
uint
tag
;
while
(
input
.
ReadTag
(
out
tag
)
)
{
while
(
(
tag
=
input
.
ReadTag
())
!=
0
)
{
switch
(
tag
)
{
case
0
:
throw
pb
::
InvalidProtocolBufferException
.
InvalidTag
();
default
:
if
(
pb
::
WireFormat
.
IsEndGroupTag
(
tag
))
{
return
;
...
...
@@ -1088,10 +1072,8 @@ namespace UnitTest.Issues.TestProtos {
public
void
MergeFrom
(
pb
::
CodedInputStream
input
)
{
uint
tag
;
while
(
input
.
ReadTag
(
out
tag
)
)
{
while
(
(
tag
=
input
.
ReadTag
())
!=
0
)
{
switch
(
tag
)
{
case
0
:
throw
pb
::
InvalidProtocolBufferException
.
InvalidTag
();
default
:
if
(
pb
::
WireFormat
.
IsEndGroupTag
(
tag
))
{
return
;
...
...
@@ -1358,10 +1340,8 @@ namespace UnitTest.Issues.TestProtos {
public
void
MergeFrom
(
pb
::
CodedInputStream
input
)
{
uint
tag
;
while
(
input
.
ReadTag
(
out
tag
)
)
{
while
(
(
tag
=
input
.
ReadTag
())
!=
0
)
{
switch
(
tag
)
{
case
0
:
throw
pb
::
InvalidProtocolBufferException
.
InvalidTag
();
default
:
if
(
pb
::
WireFormat
.
IsEndGroupTag
(
tag
))
{
return
;
...
...
csharp/src/Google.Protobuf.Test/TestProtos/UnittestProto3.cs
View file @
1a57ad8b
This diff is collapsed.
Click to expand it.
csharp/src/Google.Protobuf.Test/TestProtos/UnittestWellKnownTypes.cs
View file @
1a57ad8b
...
...
@@ -676,10 +676,8 @@ namespace Google.Protobuf.TestProtos {
public
void
MergeFrom
(
pb
::
CodedInputStream
input
)
{
uint
tag
;
while
(
input
.
ReadTag
(
out
tag
)
)
{
while
(
(
tag
=
input
.
ReadTag
())
!=
0
)
{
switch
(
tag
)
{
case
0
:
throw
pb
::
InvalidProtocolBufferException
.
InvalidTag
();
default
:
if
(
pb
::
WireFormat
.
IsEndGroupTag
(
tag
))
{
return
;
...
...
@@ -1135,10 +1133,8 @@ namespace Google.Protobuf.TestProtos {
public
void
MergeFrom
(
pb
::
CodedInputStream
input
)
{
uint
tag
;
while
(
input
.
ReadTag
(
out
tag
)
)
{
while
(
(
tag
=
input
.
ReadTag
())
!=
0
)
{
switch
(
tag
)
{
case
0
:
throw
pb
::
InvalidProtocolBufferException
.
InvalidTag
();
default
:
if
(
pb
::
WireFormat
.
IsEndGroupTag
(
tag
))
{
return
;
...
...
@@ -1758,10 +1754,8 @@ namespace Google.Protobuf.TestProtos {
public
void
MergeFrom
(
pb
::
CodedInputStream
input
)
{
uint
tag
;
while
(
input
.
ReadTag
(
out
tag
)
)
{
while
(
(
tag
=
input
.
ReadTag
())
!=
0
)
{
switch
(
tag
)
{
case
0
:
throw
pb
::
InvalidProtocolBufferException
.
InvalidTag
();
default
:
if
(
pb
::
WireFormat
.
IsEndGroupTag
(
tag
))
{
return
;
...
...
@@ -2208,10 +2202,8 @@ namespace Google.Protobuf.TestProtos {
public
void
MergeFrom
(
pb
::
CodedInputStream
input
)
{
uint
tag
;
while
(
input
.
ReadTag
(
out
tag
)
)
{
while
(
(
tag
=
input
.
ReadTag
())
!=
0
)
{
switch
(
tag
)
{
case
0
:
throw
pb
::
InvalidProtocolBufferException
.
InvalidTag
();
default
:
if
(
pb
::
WireFormat
.
IsEndGroupTag
(
tag
))
{
return
;
...
...
csharp/src/Google.Protobuf/Reflection/DescriptorProtoFile.cs
View file @
1a57ad8b
...
...
@@ -239,10 +239,8 @@ namespace Google.Protobuf.Reflection {
public
void
MergeFrom
(
pb
::
CodedInputStream
input
)
{
uint
tag
;
while
(
input
.
ReadTag
(
out
tag
)
)
{
while
(
(
tag
=
input
.
ReadTag
())
!=
0
)
{
switch
(
tag
)
{
case
0
:
throw
pb
::
InvalidProtocolBufferException
.
InvalidTag
();
default
:
if
(
pb
::
WireFormat
.
IsEndGroupTag
(
tag
))
{
return
;
...
...
@@ -538,10 +536,8 @@ namespace Google.Protobuf.Reflection {
public
void
MergeFrom
(
pb
::
CodedInputStream
input
)
{
uint
tag
;
while
(
input
.
ReadTag
(
out
tag
)
)
{
while
(
(
tag
=
input
.
ReadTag
())
!=
0
)
{
switch
(
tag
)
{
case
0
:
throw
pb
::
InvalidProtocolBufferException
.
InvalidTag
();
default
:
if
(
pb
::
WireFormat
.
IsEndGroupTag
(
tag
))
{
return
;
...
...
@@ -834,10 +830,8 @@ namespace Google.Protobuf.Reflection {
public
void
MergeFrom
(
pb
::
CodedInputStream
input
)
{
uint
tag
;
while
(
input
.
ReadTag
(
out
tag
)
)
{
while
(
(
tag
=
input
.
ReadTag
())
!=
0
)
{
switch
(
tag
)
{
case
0
:
throw
pb
::
InvalidProtocolBufferException
.
InvalidTag
();
default
:
if
(
pb
::
WireFormat
.
IsEndGroupTag
(
tag
))
{
return
;
...
...
@@ -1003,10 +997,8 @@ namespace Google.Protobuf.Reflection {
public
void
MergeFrom
(
pb
::
CodedInputStream
input
)
{
uint
tag
;
while
(
input
.
ReadTag
(
out
tag
)
)
{
while
(
(
tag
=
input
.
ReadTag
())
!=
0
)
{
switch
(
tag
)
{
case
0
:
throw
pb
::
InvalidProtocolBufferException
.
InvalidTag
();
default
:
if
(
pb
::
WireFormat
.
IsEndGroupTag
(
tag
))
{
return
;
...
...
@@ -1136,10 +1128,8 @@ namespace Google.Protobuf.Reflection {
public
void
MergeFrom
(
pb
::
CodedInputStream
input
)
{
uint
tag
;
while
(
input
.
ReadTag
(
out
tag
)
)
{
while
(
(
tag
=
input
.
ReadTag
())
!=
0
)
{
switch
(
tag
)
{
case
0
:
throw
pb
::
InvalidProtocolBufferException
.
InvalidTag
();
default
:
if
(
pb
::
WireFormat
.
IsEndGroupTag
(
tag
))
{
return
;
...
...
@@ -1431,10 +1421,8 @@ namespace Google.Protobuf.Reflection {
public
void
MergeFrom
(
pb
::
CodedInputStream
input
)
{
uint
tag
;
while
(
input
.
ReadTag
(
out
tag
)
)
{
while
(
(
tag
=
input
.
ReadTag
())
!=
0
)
{
switch
(
tag
)
{
case
0
:
throw
pb
::
InvalidProtocolBufferException
.
InvalidTag
();
default
:
if
(
pb
::
WireFormat
.
IsEndGroupTag
(
tag
))
{
return
;
...
...
@@ -1606,10 +1594,8 @@ namespace Google.Protobuf.Reflection {
public
void
MergeFrom
(
pb
::
CodedInputStream
input
)
{
uint
tag
;
while
(
input
.
ReadTag
(
out
tag
)
)
{
while
(
(
tag
=
input
.
ReadTag
())
!=
0
)
{
switch
(
tag
)
{
case
0
:
throw
pb
::
InvalidProtocolBufferException
.
InvalidTag
();
default
:
if
(
pb
::
WireFormat
.
IsEndGroupTag
(
tag
))
{
return
;
...
...
@@ -1752,10 +1738,8 @@ namespace Google.Protobuf.Reflection {
public
void
MergeFrom
(
pb
::
CodedInputStream
input
)
{
uint
tag
;
while
(
input
.
ReadTag
(
out
tag
)
)
{
while
(
(
tag
=
input
.
ReadTag
())
!=
0
)
{
switch
(
tag
)
{
case
0
:
throw
pb
::
InvalidProtocolBufferException
.
InvalidTag
();
default
:
if
(
pb
::
WireFormat
.
IsEndGroupTag
(
tag
))
{
return
;
...
...
@@ -1917,10 +1901,8 @@ namespace Google.Protobuf.Reflection {
public
void
MergeFrom
(
pb
::
CodedInputStream
input
)
{
uint
tag
;
while
(
input
.
ReadTag
(
out
tag
)
)
{
while
(
(
tag
=
input
.
ReadTag
())
!=
0
)
{
switch
(
tag
)
{
case
0
:
throw
pb
::
InvalidProtocolBufferException
.
InvalidTag
();
default
:
if
(
pb
::
WireFormat
.
IsEndGroupTag
(
tag
))
{
return
;
...
...
@@ -2074,10 +2056,8 @@ namespace Google.Protobuf.Reflection {
public
void
MergeFrom
(
pb
::
CodedInputStream
input
)
{
uint
tag
;
while
(
input
.
ReadTag
(
out
tag
)
)
{
while
(
(
tag
=
input
.
ReadTag
())
!=
0
)
{
switch
(
tag
)
{
case
0
:
throw
pb
::
InvalidProtocolBufferException
.
InvalidTag
();
default
:
if
(
pb
::
WireFormat
.
IsEndGroupTag
(
tag
))
{
return
;
...
...
@@ -2305,10 +2285,8 @@ namespace Google.Protobuf.Reflection {
public
void
MergeFrom
(
pb
::
CodedInputStream
input
)
{
uint
tag
;
while
(
input
.
ReadTag
(
out
tag
)
)
{
while
(
(
tag
=
input
.
ReadTag
())
!=
0
)
{
switch
(
tag
)
{
case
0
:
throw
pb
::
InvalidProtocolBufferException
.
InvalidTag
();
default
:
if
(
pb
::
WireFormat
.
IsEndGroupTag
(
tag
))
{
return
;
...
...
@@ -2735,10 +2713,8 @@ namespace Google.Protobuf.Reflection {
public
void
MergeFrom
(
pb
::
CodedInputStream
input
)
{
uint
tag
;
while
(
input
.
ReadTag
(
out
tag
)
)
{
while
(
(
tag
=
input
.
ReadTag
())
!=
0
)
{
switch
(
tag
)
{
case
0
:
throw
pb
::
InvalidProtocolBufferException
.
InvalidTag
();
default
:
if
(
pb
::
WireFormat
.
IsEndGroupTag
(
tag
))
{
return
;
...
...
@@ -2990,10 +2966,8 @@ namespace Google.Protobuf.Reflection {
public
void
MergeFrom
(
pb
::
CodedInputStream
input
)
{
uint
tag
;
while
(
input
.
ReadTag
(
out
tag
)
)
{
while
(
(
tag
=
input
.
ReadTag
())
!=
0
)
{
switch
(
tag
)
{
case
0
:
throw
pb
::
InvalidProtocolBufferException
.
InvalidTag
();
default
:
if
(
pb
::
WireFormat
.
IsEndGroupTag
(
tag
))
{
return
;
...
...
@@ -3237,10 +3211,8 @@ namespace Google.Protobuf.Reflection {
public
void
MergeFrom
(
pb
::
CodedInputStream
input
)
{
uint
tag
;
while
(
input
.
ReadTag
(
out
tag
)
)
{
while
(
(
tag
=
input
.
ReadTag
())
!=
0
)
{
switch
(
tag
)
{
case
0
:
throw
pb
::
InvalidProtocolBufferException
.
InvalidTag
();
default
:
if
(
pb
::
WireFormat
.
IsEndGroupTag
(
tag
))
{
return
;
...
...
@@ -3422,10 +3394,8 @@ namespace Google.Protobuf.Reflection {
public
void
MergeFrom
(
pb
::
CodedInputStream
input
)
{
uint
tag
;
while
(
input
.
ReadTag
(
out
tag
)
)
{
while
(
(
tag
=
input
.
ReadTag
())
!=
0
)
{
switch
(
tag
)
{
case
0
:
throw
pb
::
InvalidProtocolBufferException
.
InvalidTag
();
default
:
if
(
pb
::
WireFormat
.
IsEndGroupTag
(
tag
))
{
return
;
...
...
@@ -3551,10 +3521,8 @@ namespace Google.Protobuf.Reflection {
public
void
MergeFrom
(
pb
::
CodedInputStream
input
)
{
uint
tag
;
while
(
input
.
ReadTag
(
out
tag
)
)
{
while
(
(
tag
=
input
.
ReadTag
())
!=
0
)
{
switch
(
tag
)
{
case
0
:
throw
pb
::
InvalidProtocolBufferException
.
InvalidTag
();
default
:
if
(
pb
::
WireFormat
.
IsEndGroupTag
(
tag
))
{
return
;
...
...
@@ -3676,10 +3644,8 @@ namespace Google.Protobuf.Reflection {
public
void
MergeFrom
(
pb
::
CodedInputStream
input
)
{
uint
tag
;
while
(
input
.
ReadTag
(
out
tag
)
)
{
while
(
(
tag
=
input
.
ReadTag
())
!=
0
)
{
switch
(
tag
)
{
case
0
:
throw
pb
::
InvalidProtocolBufferException
.
InvalidTag
();
default
:
if
(
pb
::
WireFormat
.
IsEndGroupTag
(
tag
))
{
return
;
...
...
@@ -3801,10 +3767,8 @@ namespace Google.Protobuf.Reflection {
public
void
MergeFrom
(
pb
::
CodedInputStream
input
)
{
uint
tag
;
while
(
input
.
ReadTag
(
out
tag
)
)
{
while
(
(
tag
=
input
.
ReadTag
())
!=
0
)
{
switch
(
tag
)
{
case
0
:
throw
pb
::
InvalidProtocolBufferException
.
InvalidTag
();
default
:
if
(
pb
::
WireFormat
.
IsEndGroupTag
(
tag
))
{
return
;
...
...
@@ -4036,10 +4000,8 @@ namespace Google.Protobuf.Reflection {
public
void
MergeFrom
(
pb
::
CodedInputStream
input
)
{
uint
tag
;
while
(
input
.
ReadTag
(
out
tag
)
)
{
while
(
(
tag
=
input
.
ReadTag
())
!=
0
)
{
switch
(
tag
)
{
case
0
:
throw
pb
::
InvalidProtocolBufferException
.
InvalidTag
();
default
:
if
(
pb
::
WireFormat
.
IsEndGroupTag
(
tag
))
{
return
;
...
...
@@ -4190,10 +4152,8 @@ namespace Google.Protobuf.Reflection {
public
void
MergeFrom
(
pb
::
CodedInputStream
input
)
{
uint
tag
;
while
(
input
.
ReadTag
(
out
tag
)
)
{
while
(
(
tag
=
input
.
ReadTag
())
!=
0
)
{
switch
(
tag
)
{
case
0
:
throw
pb
::
InvalidProtocolBufferException
.
InvalidTag
();
default
:
if
(
pb
::
WireFormat
.
IsEndGroupTag
(
tag
))
{
return
;
...
...
@@ -4298,10 +4258,8 @@ namespace Google.Protobuf.Reflection {
public
void
MergeFrom
(
pb
::
CodedInputStream
input
)
{
uint
tag
;
while
(
input
.
ReadTag
(
out
tag
)
)
{
while
(
(
tag
=
input
.
ReadTag
())
!=
0
)
{
switch
(
tag
)
{
case
0
:
throw
pb
::
InvalidProtocolBufferException
.
InvalidTag
();
default
:
if
(
pb
::
WireFormat
.
IsEndGroupTag
(
tag
))
{
return
;
...
...
@@ -4470,10 +4428,8 @@ namespace Google.Protobuf.Reflection {
public
void
MergeFrom
(
pb
::
CodedInputStream
input
)
{
uint
tag
;
while
(
input
.
ReadTag
(
out
tag
)
)
{
while
(
(
tag
=
input
.
ReadTag
())
!=
0
)
{
switch
(
tag
)
{
case
0
:
throw
pb
::
InvalidProtocolBufferException
.
InvalidTag
();
default
:
if
(
pb
::
WireFormat
.
IsEndGroupTag
(
tag
))
{
return
;
...
...
csharp/src/Google.Protobuf/WellKnownTypes/Any.cs
View file @
1a57ad8b
...
...
@@ -147,10 +147,8 @@ namespace Google.Protobuf.WellKnownTypes {
public
void
MergeFrom
(
pb
::
CodedInputStream
input
)
{
uint
tag
;
while
(
input
.
ReadTag
(
out
tag
)
)
{
while
(
(
tag
=
input
.
ReadTag
())
!=
0
)
{
switch
(
tag
)
{
case
0
:
throw
pb
::
InvalidProtocolBufferException
.
InvalidTag
();
default
:
if
(
pb
::
WireFormat
.
IsEndGroupTag
(
tag
))
{
return
;
...
...
csharp/src/Google.Protobuf/WellKnownTypes/Api.cs
View file @
1a57ad8b
...
...
@@ -210,10 +210,8 @@ namespace Google.Protobuf.WellKnownTypes {
public
void
MergeFrom
(
pb
::
CodedInputStream
input
)
{
uint
tag
;
while
(
input
.
ReadTag
(
out
tag
)
)
{
while
(
(
tag
=
input
.
ReadTag
())
!=
0
)
{
switch
(
tag
)
{
case
0
:
throw
pb
::
InvalidProtocolBufferException
.
InvalidTag
();
default
:
if
(
pb
::
WireFormat
.
IsEndGroupTag
(
tag
))
{
return
;
...
...
@@ -438,10 +436,8 @@ namespace Google.Protobuf.WellKnownTypes {
public
void
MergeFrom
(
pb
::
CodedInputStream
input
)
{
uint
tag
;
while
(
input
.
ReadTag
(
out
tag
)
)
{
while
(
(
tag
=
input
.
ReadTag
())
!=
0
)
{
switch
(
tag
)
{
case
0
:
throw
pb
::
InvalidProtocolBufferException
.
InvalidTag
();
default
:
if
(
pb
::
WireFormat
.
IsEndGroupTag
(
tag
))
{
return
;
...
...
csharp/src/Google.Protobuf/WellKnownTypes/Duration.cs
View file @
1a57ad8b
...
...
@@ -148,10 +148,8 @@ namespace Google.Protobuf.WellKnownTypes {
public
void
MergeFrom
(
pb
::
CodedInputStream
input
)
{
uint
tag
;
while
(
input
.
ReadTag
(
out
tag
)
)
{
while
(
(
tag
=
input
.
ReadTag
())
!=
0
)
{
switch
(
tag
)
{
case
0
:
throw
pb
::
InvalidProtocolBufferException
.
InvalidTag
();
default
:
if
(
pb
::
WireFormat
.
IsEndGroupTag
(
tag
))
{
return
;
...
...
csharp/src/Google.Protobuf/WellKnownTypes/Empty.cs
View file @
1a57ad8b
...
...
@@ -103,10 +103,8 @@ namespace Google.Protobuf.WellKnownTypes {
public
void
MergeFrom
(
pb
::
CodedInputStream
input
)
{
uint
tag
;
while
(
input
.
ReadTag
(
out
tag
)
)
{
while
(
(
tag
=
input
.
ReadTag
())
!=
0
)
{
switch
(
tag
)
{
case
0
:
throw
pb
::
InvalidProtocolBufferException
.
InvalidTag
();
default
:
if
(
pb
::
WireFormat
.
IsEndGroupTag
(
tag
))
{
return
;
...
...
csharp/src/Google.Protobuf/WellKnownTypes/FieldMask.cs
View file @
1a57ad8b
...
...
@@ -117,10 +117,8 @@ namespace Google.Protobuf.WellKnownTypes {
public
void
MergeFrom
(
pb
::
CodedInputStream
input
)
{
uint
tag
;
while
(
input
.
ReadTag
(
out
tag
)
)
{
while
(
(
tag
=
input
.
ReadTag
())
!=
0
)
{
switch
(
tag
)
{
case
0
:
throw
pb
::
InvalidProtocolBufferException
.
InvalidTag
();
default
:
if
(
pb
::
WireFormat
.
IsEndGroupTag
(
tag
))
{
return
;
...
...
csharp/src/Google.Protobuf/WellKnownTypes/SourceContext.cs
View file @
1a57ad8b
...
...
@@ -126,10 +126,8 @@ namespace Google.Protobuf.WellKnownTypes {
public
void
MergeFrom
(
pb
::
CodedInputStream
input
)
{
uint
tag
;
while
(
input
.
ReadTag
(
out
tag
)
)
{
while
(
(
tag
=
input
.
ReadTag
())
!=
0
)
{
switch
(
tag
)
{
case
0
:
throw
pb
::
InvalidProtocolBufferException
.
InvalidTag
();
default
:
if
(
pb
::
WireFormat
.
IsEndGroupTag
(
tag
))
{
return
;
...
...
csharp/src/Google.Protobuf/WellKnownTypes/Struct.cs
View file @
1a57ad8b
...
...
@@ -136,10 +136,8 @@ namespace Google.Protobuf.WellKnownTypes {
public
void
MergeFrom
(
pb
::
CodedInputStream
input
)
{
uint
tag
;
while
(
input
.
ReadTag
(
out
tag
)
)
{
while
(
(
tag
=
input
.
ReadTag
())
!=
0
)
{
switch
(
tag
)
{
case
0
:
throw
pb
::
InvalidProtocolBufferException
.
InvalidTag
();
default
:
if
(
pb
::
WireFormat
.
IsEndGroupTag
(
tag
))
{
return
;
...
...
@@ -391,10 +389,8 @@ namespace Google.Protobuf.WellKnownTypes {
public
void
MergeFrom
(
pb
::
CodedInputStream
input
)
{
uint
tag
;
while
(
input
.
ReadTag
(
out
tag
)
)
{
while
(
(
tag
=
input
.
ReadTag
())
!=
0
)
{
switch
(
tag
)
{
case
0
:
throw
pb
::
InvalidProtocolBufferException
.
InvalidTag
();
default
:
if
(
pb
::
WireFormat
.
IsEndGroupTag
(
tag
))
{
return
;
...
...
@@ -521,10 +517,8 @@ namespace Google.Protobuf.WellKnownTypes {
public
void
MergeFrom
(
pb
::
CodedInputStream
input
)
{
uint
tag
;
while
(
input
.
ReadTag
(
out
tag
)
)
{
while
(
(
tag
=
input
.
ReadTag
())
!=
0
)
{
switch
(
tag
)
{
case
0
:
throw
pb
::
InvalidProtocolBufferException
.
InvalidTag
();
default
:
if
(
pb
::
WireFormat
.
IsEndGroupTag
(
tag
))
{
return
;
...
...
csharp/src/Google.Protobuf/WellKnownTypes/Timestamp.cs
View file @
1a57ad8b
...
...
@@ -148,10 +148,8 @@ namespace Google.Protobuf.WellKnownTypes {
public
void
MergeFrom
(
pb
::
CodedInputStream
input
)
{
uint
tag
;
while
(
input
.
ReadTag
(
out
tag
)
)
{
while
(
(
tag
=
input
.
ReadTag
())
!=
0
)
{
switch
(
tag
)
{
case
0
:
throw
pb
::
InvalidProtocolBufferException
.
InvalidTag
();
default
:
if
(
pb
::
WireFormat
.
IsEndGroupTag
(
tag
))
{
return
;
...
...
csharp/src/Google.Protobuf/WellKnownTypes/Type.cs
View file @
1a57ad8b
...
...
@@ -223,10 +223,8 @@ namespace Google.Protobuf.WellKnownTypes {
public
void
MergeFrom
(
pb
::
CodedInputStream
input
)
{
uint
tag
;
while
(
input
.
ReadTag
(
out
tag
)
)
{
while
(
(
tag
=
input
.
ReadTag
())
!=
0
)
{
switch
(
tag
)
{
case
0
:
throw
pb
::
InvalidProtocolBufferException
.
InvalidTag
();
default
:
if
(
pb
::
WireFormat
.
IsEndGroupTag
(
tag
))
{
return
;
...
...
@@ -495,10 +493,8 @@ namespace Google.Protobuf.WellKnownTypes {
public
void
MergeFrom
(
pb
::
CodedInputStream
input
)
{
uint
tag
;
while
(
input
.
ReadTag
(
out
tag
)
)
{
while
(
(
tag
=
input
.
ReadTag
())
!=
0
)
{
switch
(
tag
)
{
case
0
:
throw
pb
::
InvalidProtocolBufferException
.
InvalidTag
();
default
:
if
(
pb
::
WireFormat
.
IsEndGroupTag
(
tag
))
{
return
;
...
...
@@ -717,10 +713,8 @@ namespace Google.Protobuf.WellKnownTypes {
public
void
MergeFrom
(
pb
::
CodedInputStream
input
)
{
uint
tag
;
while
(
input
.
ReadTag
(
out
tag
)
)
{
while
(
(
tag
=
input
.
ReadTag
())
!=
0
)
{
switch
(
tag
)
{
case
0
:
throw
pb
::
InvalidProtocolBufferException
.
InvalidTag
();
default
:
if
(
pb
::
WireFormat
.
IsEndGroupTag
(
tag
))
{
return
;
...
...
@@ -875,10 +869,8 @@ namespace Google.Protobuf.WellKnownTypes {
public
void
MergeFrom
(
pb
::
CodedInputStream
input
)
{
uint
tag
;
while
(
input
.
ReadTag
(
out
tag
)
)
{
while
(
(
tag
=
input
.
ReadTag
())
!=
0
)
{
switch
(
tag
)
{
case
0
:
throw
pb
::
InvalidProtocolBufferException
.
InvalidTag
();
default
:
if
(
pb
::
WireFormat
.
IsEndGroupTag
(
tag
))
{
return
;
...
...
@@ -1015,10 +1007,8 @@ namespace Google.Protobuf.WellKnownTypes {
public
void
MergeFrom
(
pb
::
CodedInputStream
input
)
{
uint
tag
;
while
(
input
.
ReadTag
(
out
tag
)
)
{
while
(
(
tag
=
input
.
ReadTag
())
!=
0
)
{
switch
(
tag
)
{
case
0
:
throw
pb
::
InvalidProtocolBufferException
.
InvalidTag
();
default
:
if
(
pb
::
WireFormat
.
IsEndGroupTag
(
tag
))
{
return
;
...
...
csharp/src/Google.Protobuf/WellKnownTypes/Wrappers.cs
View file @
1a57ad8b
...
...
@@ -135,10 +135,8 @@ namespace Google.Protobuf.WellKnownTypes {
public
void
MergeFrom
(
pb
::
CodedInputStream
input
)
{
uint
tag
;
while
(
input
.
ReadTag
(
out
tag
)
)
{
while
(
(
tag
=
input
.
ReadTag
())
!=
0
)
{
switch
(
tag
)
{
case
0
:
throw
pb
::
InvalidProtocolBufferException
.
InvalidTag
();
default
:
if
(
pb
::
WireFormat
.
IsEndGroupTag
(
tag
))
{
return
;
...
...
@@ -242,10 +240,8 @@ namespace Google.Protobuf.WellKnownTypes {
public
void
MergeFrom
(
pb
::
CodedInputStream
input
)
{
uint
tag
;
while
(
input
.
ReadTag
(
out
tag
)
)
{
while
(
(
tag
=
input
.
ReadTag
())
!=
0
)
{
switch
(
tag
)
{
case
0
:
throw
pb
::
InvalidProtocolBufferException
.
InvalidTag
();
default
:
if
(
pb
::
WireFormat
.
IsEndGroupTag
(
tag
))
{
return
;
...
...
@@ -349,10 +345,8 @@ namespace Google.Protobuf.WellKnownTypes {
public
void
MergeFrom
(
pb
::
CodedInputStream
input
)
{
uint
tag
;
while
(
input
.
ReadTag
(
out
tag
)
)
{
while
(
(
tag
=
input
.
ReadTag
())
!=
0
)
{
switch
(
tag
)
{
case
0
:
throw
pb
::
InvalidProtocolBufferException
.
InvalidTag
();
default
:
if
(
pb
::
WireFormat
.
IsEndGroupTag
(
tag
))
{
return
;
...
...
@@ -456,10 +450,8 @@ namespace Google.Protobuf.WellKnownTypes {
public
void
MergeFrom
(
pb
::
CodedInputStream
input
)
{
uint
tag
;
while
(
input
.
ReadTag
(
out
tag
)
)
{
while
(
(
tag
=
input
.
ReadTag
())
!=
0
)
{
switch
(
tag
)
{
case
0
:
throw
pb
::
InvalidProtocolBufferException
.
InvalidTag
();
default
:
if
(
pb
::
WireFormat
.
IsEndGroupTag
(
tag
))
{
return
;
...
...
@@ -563,10 +555,8 @@ namespace Google.Protobuf.WellKnownTypes {
public
void
MergeFrom
(
pb
::
CodedInputStream
input
)
{
uint
tag
;
while
(
input
.
ReadTag
(
out
tag
)
)
{
while
(
(
tag
=
input
.
ReadTag
())
!=
0
)
{
switch
(
tag
)
{
case
0
:
throw
pb
::
InvalidProtocolBufferException
.
InvalidTag
();
default
:
if
(
pb
::
WireFormat
.
IsEndGroupTag
(
tag
))
{
return
;
...
...
@@ -670,10 +660,8 @@ namespace Google.Protobuf.WellKnownTypes {
public
void
MergeFrom
(
pb
::
CodedInputStream
input
)
{
uint
tag
;
while
(
input
.
ReadTag
(
out
tag
)
)
{
while
(
(
tag
=
input
.
ReadTag
())
!=
0
)
{
switch
(
tag
)
{
case
0
:
throw
pb
::
InvalidProtocolBufferException
.
InvalidTag
();
default
:
if
(
pb
::
WireFormat
.
IsEndGroupTag
(
tag
))
{
return
;
...
...
@@ -777,10 +765,8 @@ namespace Google.Protobuf.WellKnownTypes {
public
void
MergeFrom
(
pb
::
CodedInputStream
input
)
{
uint
tag
;
while
(
input
.
ReadTag
(
out
tag
)
)
{
while
(
(
tag
=
input
.
ReadTag
())
!=
0
)
{
switch
(
tag
)
{
case
0
:
throw
pb
::
InvalidProtocolBufferException
.
InvalidTag
();
default
:
if
(
pb
::
WireFormat
.
IsEndGroupTag
(
tag
))
{
return
;
...
...
@@ -884,10 +870,8 @@ namespace Google.Protobuf.WellKnownTypes {
public
void
MergeFrom
(
pb
::
CodedInputStream
input
)
{
uint
tag
;
while
(
input
.
ReadTag
(
out
tag
)
)
{
while
(
(
tag
=
input
.
ReadTag
())
!=
0
)
{
switch
(
tag
)
{
case
0
:
throw
pb
::
InvalidProtocolBufferException
.
InvalidTag
();
default
:
if
(
pb
::
WireFormat
.
IsEndGroupTag
(
tag
))
{
return
;
...
...
@@ -991,10 +975,8 @@ namespace Google.Protobuf.WellKnownTypes {
public
void
MergeFrom
(
pb
::
CodedInputStream
input
)
{
uint
tag
;
while
(
input
.
ReadTag
(
out
tag
)
)
{
while
(
(
tag
=
input
.
ReadTag
())
!=
0
)
{
switch
(
tag
)
{
case
0
:
throw
pb
::
InvalidProtocolBufferException
.
InvalidTag
();
default
:
if
(
pb
::
WireFormat
.
IsEndGroupTag
(
tag
))
{
return
;
...
...
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