Skip to content

Commit

Permalink
#467 - Relicense from Apache to MIT.
Browse files Browse the repository at this point in the history
  • Loading branch information
sys27 committed Oct 25, 2021
1 parent cdbab37 commit e8793ee
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions xFunc.Maths/Tokenization/ParseNumbers.cs
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#pragma warning disable SA1636

// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// The MIT License (MIT)
Expand All @@ -23,7 +25,6 @@
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
// SOFTWARE.

using System;
using System.Diagnostics;
using System.Diagnostics.CodeAnalysis;
Expand Down Expand Up @@ -135,4 +136,6 @@ private static bool IsDigit(char c, int radix, out int result)
return tmp < radix;
}
}
}
}

#pragma warning restore SA1636

0 comments on commit e8793ee

Please sign in to comment.