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 ea0611800b6001492c4ce2de48633905f1241a50 Author: Brian Lachniet <[email protected]> AuthorDate: Sun Aug 18 15:31:33 2019 -0400 AVRO-2454: Fix SA1611 - ElementParametersMustBeDocumented (cherry picked from commit 2641b45e2d61d718fd3301cf380ea829f2c0ae6a) --- lang/csharp/Avro.ruleset | 1 - lang/csharp/src/apache/main/Generic/PreresolvingDatumReader.cs | 1 + 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/lang/csharp/Avro.ruleset b/lang/csharp/Avro.ruleset index a624c32..00e630d 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="SA1611" Action="Info" /> <Rule Id="SA1614" Action="Info" /> <Rule Id="SA1615" Action="Info" /> <Rule Id="SA1616" Action="Info" /> diff --git a/lang/csharp/src/apache/main/Generic/PreresolvingDatumReader.cs b/lang/csharp/src/apache/main/Generic/PreresolvingDatumReader.cs index b963618..8b0cffa 100644 --- a/lang/csharp/src/apache/main/Generic/PreresolvingDatumReader.cs +++ b/lang/csharp/src/apache/main/Generic/PreresolvingDatumReader.cs @@ -507,6 +507,7 @@ namespace Avro.Generic /// the Specific and Generic implementations. Used to avoid retrieving the existing /// value if it's not reusable. /// </summary> + /// <param name="tag">Schema type to test for reusability.</param> protected virtual bool IsReusable(Schema.Type tag) { return true;
