From 51b467edb92a701687197a7e2b9c1dfd9ac9d963 Mon Sep 17 00:00:00 2001 From: Sam Harwell Date: Sun, 5 Jul 2020 13:50:29 -0700 Subject: [PATCH] Fix CS1711 (XML comment has a typeparam tag, but there is no type parameter by that name) --- Directory.Build.props | 3 +-- src/TensorFlowNET.Core/Protobuf/IProtoBuf.cs | 1 - src/TensorFlowNET.Core/Sessions/BaseSession.cs | 1 - 3 files changed, 1 insertion(+), 4 deletions(-) diff --git a/Directory.Build.props b/Directory.Build.props index 4bf85d50..0180278d 100644 --- a/Directory.Build.props +++ b/Directory.Build.props @@ -19,9 +19,8 @@ CS1570: XML comment has badly formed XML CS1572: XML comment has a param tag, but there is no parameter by that name CS1587: XML comment is not placed on a valid language element - CS1711: XML comment has a typeparam tag, but there is no type parameter by that name --> - $(NoWarn),1570,1572,1587,1711 + $(NoWarn),1570,1572,1587 diff --git a/src/TensorFlowNET.Core/Protobuf/IProtoBuf.cs b/src/TensorFlowNET.Core/Protobuf/IProtoBuf.cs index c33ec13e..aa91a625 100644 --- a/src/TensorFlowNET.Core/Protobuf/IProtoBuf.cs +++ b/src/TensorFlowNET.Core/Protobuf/IProtoBuf.cs @@ -18,7 +18,6 @@ /// /// Returns a `Variable` object created from `variable_def`. /// - /// /// /// /// diff --git a/src/TensorFlowNET.Core/Sessions/BaseSession.cs b/src/TensorFlowNET.Core/Sessions/BaseSession.cs index 76d434b4..173d2309 100644 --- a/src/TensorFlowNET.Core/Sessions/BaseSession.cs +++ b/src/TensorFlowNET.Core/Sessions/BaseSession.cs @@ -144,7 +144,6 @@ namespace Tensorflow /// /// Runs a step based on the given fetches and feeds. /// - /// /// A list of operations to be run, but not fetched. /// ///