fix: Remove unnecessary message from NotImplementedException in DevicePropertiesConverter

This commit is contained in:
Neil Dorin 2026-06-03 12:22:06 -06:00
parent cd89cf1cc9
commit a1617fbeb2

View file

@ -76,6 +76,6 @@ public class DevicePropertiesConverter : JsonConverter
public override void WriteJson(JsonWriter writer, object value, JsonSerializer serializer)
{
throw new NotImplementedException("SOD OFF HOSER");
throw new NotImplementedException();
}
}