From 75590d98d8b3b0a347956a357dba11a43553db33 Mon Sep 17 00:00:00 2001 From: Dmytro Kyshchenko Date: Mon, 11 Dec 2023 16:39:04 +0200 Subject: [PATCH] Remove empty body of interfaces --- version.json | 2 +- xFunc.Cli/xFunc.Cli.csproj | 6 +++--- xFunc.Maths/Analyzers/Formatters/IFormatter.cs | 4 +--- xFunc.Maths/Analyzers/IDifferentiator.cs | 4 +--- xFunc.Maths/Analyzers/ISimplifier.cs | 4 +--- xFunc.Maths/Analyzers/TypeAnalyzers/ITypeAnalyzer.cs | 4 +--- xFunc.Maths/xFunc.Maths.csproj | 6 +++--- 7 files changed, 11 insertions(+), 19 deletions(-) diff --git a/version.json b/version.json index e0a37a358..b6fc6bfe7 100644 --- a/version.json +++ b/version.json @@ -1,6 +1,6 @@ { "$schema": "https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/master/src/NerdBank.GitVersioning/version.schema.json", - "version": "4.4.1", + "version": "4.5.0-preview.{height}", "assemblyVersion": { "precision": "revision" }, diff --git a/xFunc.Cli/xFunc.Cli.csproj b/xFunc.Cli/xFunc.Cli.csproj index 250787d04..9fe92047d 100644 --- a/xFunc.Cli/xFunc.Cli.csproj +++ b/xFunc.Cli/xFunc.Cli.csproj @@ -7,7 +7,7 @@ true xfunc xFunc.Cli - 4.4.1 + 4.5.0 xFunc.Maths Dmytro Kyshchenko @@ -16,8 +16,8 @@ https://github.com/sys27/xFunc xFunc.png math formula parse parser math-parser logic simplification derivative differentiation condition complex-numbers trigonometry unit-converter - 4.4.1 - 4.4.1 + 4.5.0 + 4.5.0 https://github.com/sys27/xFunc GitHub https://sys27.github.io/xFunc/articles/change-log.html diff --git a/xFunc.Maths/Analyzers/Formatters/IFormatter.cs b/xFunc.Maths/Analyzers/Formatters/IFormatter.cs index 27186fde4..5be041a84 100644 --- a/xFunc.Maths/Analyzers/Formatters/IFormatter.cs +++ b/xFunc.Maths/Analyzers/Formatters/IFormatter.cs @@ -7,6 +7,4 @@ namespace xFunc.Maths.Analyzers.Formatters; /// The common interface for expression formatters. /// /// -public interface IFormatter : IAnalyzer -{ -} \ No newline at end of file +public interface IFormatter : IAnalyzer; \ No newline at end of file diff --git a/xFunc.Maths/Analyzers/IDifferentiator.cs b/xFunc.Maths/Analyzers/IDifferentiator.cs index e92fa3a08..a017a94b3 100644 --- a/xFunc.Maths/Analyzers/IDifferentiator.cs +++ b/xFunc.Maths/Analyzers/IDifferentiator.cs @@ -6,6 +6,4 @@ namespace xFunc.Maths.Analyzers; /// /// The interface for differentiator. /// -public interface IDifferentiator : IAnalyzer -{ -} \ No newline at end of file +public interface IDifferentiator : IAnalyzer; \ No newline at end of file diff --git a/xFunc.Maths/Analyzers/ISimplifier.cs b/xFunc.Maths/Analyzers/ISimplifier.cs index 8445230a3..128a203fe 100644 --- a/xFunc.Maths/Analyzers/ISimplifier.cs +++ b/xFunc.Maths/Analyzers/ISimplifier.cs @@ -6,6 +6,4 @@ namespace xFunc.Maths.Analyzers; /// /// The interface for mathematical expression simplifier. /// -public interface ISimplifier : IAnalyzer -{ -} \ No newline at end of file +public interface ISimplifier : IAnalyzer; \ No newline at end of file diff --git a/xFunc.Maths/Analyzers/TypeAnalyzers/ITypeAnalyzer.cs b/xFunc.Maths/Analyzers/TypeAnalyzers/ITypeAnalyzer.cs index 60fc7dcf7..44d1c2d8f 100644 --- a/xFunc.Maths/Analyzers/TypeAnalyzers/ITypeAnalyzer.cs +++ b/xFunc.Maths/Analyzers/TypeAnalyzers/ITypeAnalyzer.cs @@ -7,6 +7,4 @@ namespace xFunc.Maths.Analyzers.TypeAnalyzers; /// Type Analyzer checks the expression tree for argument type and result type. If result type is Undefined, then Type Analyzer cannot determine the right type and bypass current expression. /// /// -public interface ITypeAnalyzer : IAnalyzer -{ -} \ No newline at end of file +public interface ITypeAnalyzer : IAnalyzer; \ No newline at end of file diff --git a/xFunc.Maths/xFunc.Maths.csproj b/xFunc.Maths/xFunc.Maths.csproj index 9722b346a..33d063ef3 100644 --- a/xFunc.Maths/xFunc.Maths.csproj +++ b/xFunc.Maths/xFunc.Maths.csproj @@ -5,7 +5,7 @@ latest xFunc.Maths xFunc.Maths - 4.4.1 + 4.5.0 xFunc.Maths Dmytro Kyshchenko @@ -15,8 +15,8 @@ xFunc.png math formula parse parser math-parser logic simplification derivative differentiation condition complex-numbers trigonometry unit-converter en - 4.4.1 - 4.4.1 + 4.5.0 + 4.5.0 https://github.com/sys27/xFunc GitHub https://sys27.github.io/xFunc/articles/change-log.html