Hi Audrey,Thanks for the comment, we can apply your suggestion in the next update of KnownOIDs class.
Valerie On 6/6/2020 9:03 AM, Andrey Turbanov wrote:
List.of(KnownOIDs.values()).forEach(o -> { register(o); });I wonder if this 'forEach' is better than plain old 'for' in some ways? ``` for (KnownOIDs oid : KnownOIDs.values()) { register(oid); } ``` I think a variant with plain 'for' generates a bit less garbage. Andrey Turbanov