Skip to content
Snippets Groups Projects
Commit 3f2c063e authored by Simon Spinner's avatar Simon Spinner
Browse files

Adapt GenericAgent to changes in API.

parent 177f9ba4
No related branches found
No related tags found
No related merge requests found
...@@ -177,7 +177,7 @@ public class GenericAgent implements IApplication { ...@@ -177,7 +177,7 @@ public class GenericAgent implements IApplication {
for (RequiredObject reqObject : notResolved) { for (RequiredObject reqObject : notResolved) {
if (ObjectMatcher.matches(curDelegate, reqObject.getObject())) { if (ObjectMatcher.matches(curDelegate, reqObject.getObject())) {
// Connect the two objects with each other // Connect the two objects with each other
ModelSkeletonAdapter adapter = agent.getModelRepository().adapt(reqObject.getObject(), ModelSkeletonAdapter adapter = agent.adapt(reqObject.getObject(),
ModelSkeletonAdapter.class); ModelSkeletonAdapter.class);
adapter.setRepositoryObject((CDOObject) curDelegate); adapter.setRepositoryObject((CDOObject) curDelegate);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment