Skip to content

Commit

Permalink
Merge pull request #755 from sys27/feature/one-line-interfaces
Browse files Browse the repository at this point in the history
Remove empty body of interfaces
  • Loading branch information
sys27 authored Dec 11, 2023
2 parents 3119f79 + 75590d9 commit 7ec1344
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 19 deletions.
2 changes: 1 addition & 1 deletion version.json
Original file line number Diff line number Diff line change
@@ -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"
},
Expand Down
6 changes: 3 additions & 3 deletions xFunc.Cli/xFunc.Cli.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<PackAsTool>true</PackAsTool>
<ToolCommandName>xfunc</ToolCommandName>
<PackageId>xFunc.Cli</PackageId>
<Version>4.4.1</Version>
<Version>4.5.0</Version>
<Product>xFunc.Maths</Product>
<Authors>Dmytro Kyshchenko</Authors>
<Company />
Expand All @@ -16,8 +16,8 @@
<PackageProjectUrl>https://github.com/sys27/xFunc</PackageProjectUrl>
<PackageIcon>xFunc.png</PackageIcon>
<PackageTags>math formula parse parser math-parser logic simplification derivative differentiation condition complex-numbers trigonometry unit-converter</PackageTags>
<AssemblyVersion>4.4.1</AssemblyVersion>
<FileVersion>4.4.1</FileVersion>
<AssemblyVersion>4.5.0</AssemblyVersion>
<FileVersion>4.5.0</FileVersion>
<RepositoryUrl>https://github.com/sys27/xFunc</RepositoryUrl>
<RepositoryType>GitHub</RepositoryType>
<PackageReleaseNotes>https://sys27.github.io/xFunc/articles/change-log.html
Expand Down
4 changes: 1 addition & 3 deletions xFunc.Maths/Analyzers/Formatters/IFormatter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,4 @@ namespace xFunc.Maths.Analyzers.Formatters;
/// The common interface for expression formatters.
/// </summary>
/// <seealso cref="IAnalyzer{TResult}" />
public interface IFormatter : IAnalyzer<string>
{
}
public interface IFormatter : IAnalyzer<string>;
4 changes: 1 addition & 3 deletions xFunc.Maths/Analyzers/IDifferentiator.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,4 @@ namespace xFunc.Maths.Analyzers;
/// <summary>
/// The interface for differentiator.
/// </summary>
public interface IDifferentiator : IAnalyzer<IExpression, DifferentiatorContext>
{
}
public interface IDifferentiator : IAnalyzer<IExpression, DifferentiatorContext>;
4 changes: 1 addition & 3 deletions xFunc.Maths/Analyzers/ISimplifier.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,4 @@ namespace xFunc.Maths.Analyzers;
/// <summary>
/// The interface for mathematical expression simplifier.
/// </summary>
public interface ISimplifier : IAnalyzer<IExpression>
{
}
public interface ISimplifier : IAnalyzer<IExpression>;
4 changes: 1 addition & 3 deletions xFunc.Maths/Analyzers/TypeAnalyzers/ITypeAnalyzer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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.
/// </summary>
/// <seealso cref="IAnalyzer{ResultType}" />
public interface ITypeAnalyzer : IAnalyzer<ResultTypes>
{
}
public interface ITypeAnalyzer : IAnalyzer<ResultTypes>;
6 changes: 3 additions & 3 deletions xFunc.Maths/xFunc.Maths.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<LangVersion>latest</LangVersion>
<RootNamespace>xFunc.Maths</RootNamespace>
<PackageId>xFunc.Maths</PackageId>
<Version>4.4.1</Version>
<Version>4.5.0</Version>
<Product>xFunc.Maths</Product>
<Authors>Dmytro Kyshchenko</Authors>
<Company />
Expand All @@ -15,8 +15,8 @@
<PackageIcon>xFunc.png</PackageIcon>
<PackageTags>math formula parse parser math-parser logic simplification derivative differentiation condition complex-numbers trigonometry unit-converter</PackageTags>
<NeutralLanguage>en</NeutralLanguage>
<AssemblyVersion>4.4.1</AssemblyVersion>
<FileVersion>4.4.1</FileVersion>
<AssemblyVersion>4.5.0</AssemblyVersion>
<FileVersion>4.5.0</FileVersion>
<RepositoryUrl>https://github.com/sys27/xFunc</RepositoryUrl>
<RepositoryType>GitHub</RepositoryType>
<PackageReleaseNotes>https://sys27.github.io/xFunc/articles/change-log.html
Expand Down

0 comments on commit 7ec1344

Please sign in to comment.