Our project has some dependencies that register parsers for various file formats via the java services framework.
We’re using b/uber and are finding some META-INF/services/ definitions are not correctly being appended.
I’ve chased this down to the regex in the default-handlers being ^META-INF/services/ instead of something more like ^META-INF/services/.*
The current regex would match under re-find, but not under re-matches which the implementation uses.