ASCOMInitiative / ASCOMRemote

The ASCOM REST based Remote Driver Server and Remote Access Clients
GNU General Public License v3.0
57 stars 16 forks source link

Remove implied minimum/maximum bounds #68

Closed RReverser closed 1 month ago

RReverser commented 1 month ago

int32 and uint32 imply their minimum/maximum values by the type itself, so no need to spell them out the default bounds as that only adds verbosity.

Keep custom bounds in place though (e.g. when using int32 but with minimum: 0).

Before:

image

After:

image

Peter-Simpson commented 1 month ago

Merged as suggested.