Much better Get Long Hash Code implementation

This commit is contained in:
LarsBrubaker 2019-01-28 20:21:20 -08:00
parent 44c6587b8f
commit 052048ee6e
3 changed files with 4 additions and 4 deletions

View file

@ -922,7 +922,7 @@ namespace MatterHackers.MatterControl.SlicerConfiguration
}
}
public long GetLongHashCode()
public ulong GetLongHashCode()
{
var bigStringForHashCode = new StringBuilder();
@ -937,7 +937,7 @@ namespace MatterHackers.MatterControl.SlicerConfiguration
}
}
return agg_basics.ComputeHash(bigStringForHashCode.ToString());
return bigStringForHashCode.ToString().GetLongHashCode();
}
#endregion