You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix(light-model-client): Do not implement org.modelix.incremental interfaces in public classes
Implementing `IStateVariableGroup` but not exposing `org.modelix.incremental` as API dependency resulted in the following error when using the light-model-client library:
Cannot access 'org.modelix.incremental.IStateVariableGroup' which is a super type of 'org.modelix.client.light.LightModelClient'. Check your module class path for missing or conflicting dependencies.
Exposing `org.modelix.incremental` as an API dependency would have been a solution too, but we should not expose its API accidentally. When consumers want to use the light-model-client with its incremental functionality, they should add `org.modelix.incremental` as a dependency themselves.
0 commit comments