internal -> public
This commit is contained in:
parent
eab88e5051
commit
2df3480f43
@ -2,14 +2,14 @@
|
||||
|
||||
namespace ConcurrentCollections
|
||||
{
|
||||
internal static class PlatformHelper
|
||||
public static class PlatformHelper
|
||||
{
|
||||
private const int ProcessorCountRefreshIntervalMs = 30000;
|
||||
|
||||
private static volatile int _processorCount;
|
||||
private static volatile int _lastProcessorCountRefreshTicks;
|
||||
|
||||
internal static int ProcessorCount {
|
||||
public static int ProcessorCount {
|
||||
get {
|
||||
var now = Environment.TickCount;
|
||||
if (_processorCount == 0 || (now - _lastProcessorCountRefreshTicks) >= ProcessorCountRefreshIntervalMs)
|
||||
|
@ -162,7 +162,7 @@ namespace NadekoBot.Modules.Administration.Commands.Migration
|
||||
}
|
||||
}
|
||||
|
||||
internal class ServerSpecificConfig
|
||||
public class ServerSpecificConfig
|
||||
{
|
||||
public bool VoicePlusTextEnabled { get; set; }
|
||||
public bool SendPrivateMessageOnMention { get; set; }
|
||||
|
@ -245,7 +245,7 @@ namespace NadekoBot.Modules.Music.Classes
|
||||
});
|
||||
}
|
||||
|
||||
internal async Task UpdateSongDurationsAsync()
|
||||
public async Task UpdateSongDurationsAsync()
|
||||
{
|
||||
var curSong = CurrentSong;
|
||||
var toUpdate = playlist.Where(s => s.SongInfo.ProviderType == MusicType.Normal &&
|
||||
|
@ -18,5 +18,8 @@
|
||||
<ItemGroup>
|
||||
<DnxInvisibleFolder Include="data\permissions\" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<DnxInvisibleContent Include="data\questions.json" />
|
||||
</ItemGroup>
|
||||
<Import Project="$(VSToolsPath)\DotNet\Microsoft.DotNet.targets" Condition="'$(VSToolsPath)' != ''" />
|
||||
</Project>
|
@ -22,7 +22,7 @@ using System.Threading.Tasks;
|
||||
|
||||
namespace Services.CleverBotApi
|
||||
{
|
||||
internal class Cleverbot : ChatterBot
|
||||
public class Cleverbot : ChatterBot
|
||||
{
|
||||
private readonly int endIndex;
|
||||
private readonly string baseUrl;
|
||||
@ -41,7 +41,7 @@ namespace Services.CleverBotApi
|
||||
}
|
||||
}
|
||||
|
||||
internal class CleverbotSession : ChatterBotSession
|
||||
public class CleverbotSession : ChatterBotSession
|
||||
{
|
||||
private readonly int endIndex;
|
||||
private readonly string url;
|
||||
|
@ -22,7 +22,7 @@ using System.Threading.Tasks;
|
||||
|
||||
namespace Services.CleverBotApi
|
||||
{
|
||||
internal class Pandorabots : ChatterBot
|
||||
public class Pandorabots : ChatterBot
|
||||
{
|
||||
private readonly string botid;
|
||||
|
||||
@ -37,7 +37,7 @@ namespace Services.CleverBotApi
|
||||
}
|
||||
}
|
||||
|
||||
internal class PandorabotsSession : ChatterBotSession
|
||||
public class PandorabotsSession : ChatterBotSession
|
||||
{
|
||||
private readonly IDictionary<string, string> vars;
|
||||
|
||||
|
@ -28,7 +28,7 @@ using System.Xml.XPath;
|
||||
|
||||
namespace Services.CleverBotApi
|
||||
{
|
||||
internal static class Utils
|
||||
public static class Utils
|
||||
{
|
||||
public static string ParametersToWWWFormURLEncoded(IDictionary<string, string> parameters)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user