CDM GRAVITY_MODEL regexp pattern

Hello everyone,
I stumbled upon a CDM where the gravity model contains a space in the model description, such as:
“XXXX XXXX: 36D 36O”
It got me an error as it does not match the current GRAVITY_PATTERN in CdmMetadataKey.java. It would be easy to tune it, by adding one blank space in the first regex block as follows:
Pattern.compile(“^\p{Blank}([-_\p{Blank}A-Za-z0-9]+)\p{Blank}:” +
“\p{Blank}([0-9]+)D" +
"\p{Blank}
([0-9]+)O” +
“\p{Blank}*$”);

Would you agree to this update ?

I did not knew it was possible to use a \p{something} specification inside a [] list, but if it allowed it is fine with me.