sszuev commented on issue #2868:
URL: https://github.com/apache/jena/issues/2868#issuecomment-2537100722

   This issue also exists in the Legacy Ont API. 
   
   The simplest solution (and probably the most suitable one) is to use only 
`UnionGraph` for listener's registration (even there is an `InfGraph`). I.e.:
   ```java
       @Override
       public OntGraphModelImpl register(ModelChangedListener listener) {
           getUnionGraph().getEventManager().register(adapt(listener));
           return this;
       }
   ```
   
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to