This is an automated email from the ASF dual-hosted git repository. blachniet pushed a commit to branch branch-1.9 in repository https://gitbox.apache.org/repos/asf/avro.git
commit 18f8107968c0699516d9a77653f397b5ad1680a1 Author: Brian Lachniet <[email protected]> AuthorDate: Sun Aug 18 15:22:05 2019 -0400 AVRO-2454: Fix SA1604 - ElementDocumentationMustHaveSummary (cherry picked from commit 5b7fcf6d9a628e768410a369fd7773b46378052c) --- lang/csharp/Avro.ruleset | 1 - lang/csharp/src/apache/main/Generic/GenericDatumReader.cs | 9 +++++++-- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/lang/csharp/Avro.ruleset b/lang/csharp/Avro.ruleset index 0931157..9298422 100644 --- a/lang/csharp/Avro.ruleset +++ b/lang/csharp/Avro.ruleset @@ -133,7 +133,6 @@ <Rule Id="SA1516" Action="Info" /> <Rule Id="SA1519" Action="Info" /> <Rule Id="SA1520" Action="Info" /> - <Rule Id="SA1604" Action="Info" /> <Rule Id="SA1606" Action="Info" /> <Rule Id="SA1610" Action="Info" /> <Rule Id="SA1611" Action="Info" /> diff --git a/lang/csharp/src/apache/main/Generic/GenericDatumReader.cs b/lang/csharp/src/apache/main/Generic/GenericDatumReader.cs index 1edb765..da33afd 100644 --- a/lang/csharp/src/apache/main/Generic/GenericDatumReader.cs +++ b/lang/csharp/src/apache/main/Generic/GenericDatumReader.cs @@ -21,8 +21,13 @@ using Avro.IO; namespace Avro.Generic { - /// PreresolvingDatumReader for reading data to GenericRecord classes or primitives. - /// <see cref="PreresolvingDatumReader{T}">For more information about performance considerations for choosing this implementation</see> + /// <summary> + /// <see cref="PreresolvingDatumReader{T}"/> for reading data to <see cref="GenericRecord"/> + /// classes or primitives. + /// <see cref="PreresolvingDatumReader{T}">For more information about performance considerations + /// for choosing this implementation</see>. + /// </summary> + /// <typeparam name="T">Type to deserialize data into.</typeparam> public class GenericDatumReader<T> : PreresolvingDatumReader<T> { /// <summary>
