Code inspections

This commit is contained in:
2019-09-29 22:34:46 +01:00
parent 2a13fcd40a
commit 7465260354
6 changed files with 15 additions and 14 deletions
+4 -4
View File
@@ -72,15 +72,15 @@ namespace ASCOM.Meade.net
#endregion
// This property returns the main thread's id.
public static uint MainThreadId { get; private set; } // Stores the main thread's thread id.
private static uint MainThreadId { get; set; } // Stores the main thread's thread id.
// Used to tell if started by COM or manually
public static bool StartedByCom { get; private set; } // True if server started by COM (-embedding)
private static bool StartedByCom { get; set; } // True if server started by COM (-embedding)
#region Server Lock, Object Counting, and AutoQuit on COM startup
// Returns the total number of objects alive currently.
public static int ObjectsCount
private static int ObjectsCount
{
get
{
@@ -106,7 +106,7 @@ namespace ASCOM.Meade.net
}
// Returns the current server lock count.
public static int ServerLockCount
private static int ServerLockCount
{
get
{