Code inspections

This commit is contained in:
2019-09-29 22:51:18 +01:00
parent 970b1f1571
commit 13176cb286
+2 -2
View File
@@ -120,11 +120,11 @@ namespace ASCOM.Meade.net
}
}
public static string ReadCharacters(int throwAwayCharacters)
public static void ReadCharacters(int throwAwayCharacters)
{
lock (LockObject)
{
return SharedSerial.ReceiveCounted(throwAwayCharacters);
SharedSerial.ReceiveCounted(throwAwayCharacters);
}
}