On Tue, Jun 12, 2018 at 12:37 PM Julian Sedding <jsedd...@gmail.com> wrote: > ...then came > ResourceUtil.getValueMap(resource), which returns a modifiable empty > ValueMap even if resource == null. And finally, a lot later, > resource.getValueMap() was added, because ValueMaps are used a lot > when dealing with resources...
Indeed, and that's a nice pattern IMO - start without touching the "sacred" API module, and only if things start being used a lot move things here. This helps keep the API small and focused. -Bertrand