Remove steam awards voting

We do not intend to keep it in mainline as the API is unstable and too sale-specific.
This commit is contained in:
JustArchi
2018-12-26 02:56:38 +01:00
parent c73536733a
commit c5aae8d534
3 changed files with 1 additions and 106 deletions

View File

@@ -199,22 +199,6 @@ namespace ArchiSteamFarm {
}
}
internal static int RandomNext(int maxWithout) {
if (maxWithout <= 0) {
ASF.ArchiLogger.LogNullError(nameof(maxWithout));
return -1;
}
if (maxWithout == 1) {
return 0;
}
lock (Random) {
return Random.Next(maxWithout);
}
}
internal static string ReadLineMasked(char mask = '*') {
StringBuilder result = new StringBuilder();