Skip to content

Commit

Permalink
Minor changes: deleted an unused method Value.UIntValue()
Browse files Browse the repository at this point in the history
  • Loading branch information
AlRado committed May 12, 2021
1 parent 4aaa728 commit 7b14956
Showing 1 changed file with 0 additions and 8 deletions.
8 changes: 0 additions & 8 deletions MiniScript-cs/MiniscriptTypes.cs
Original file line number Diff line number Diff line change
Expand Up @@ -66,14 +66,6 @@ public virtual int IntValue() {
return (int)DoubleValue();
}

/// <summary>
/// Get the numeric value of this Value as an unsigned integer.
/// </summary>
/// <returns>this value, as unsigned int</returns>
public virtual uint UIntValue() {
return (uint)DoubleValue();
}

/// <summary>
/// Get the numeric value of this Value as a single-precision float.
/// </summary>
Expand Down

0 comments on commit 7b14956

Please sign in to comment.