After wasting a lot of time investigating why one of my Model classes was not instrumented anymore, I realized this line of code, from a static method I added to my Model, was the culprit:
// myObjects is a List<SomeModel>
myObjects.forEach((SomeModel m) -> System.out.println(m.getId()));
Why?
Thanks.