Skip to content

Commit

Permalink
Fix the build
Browse files Browse the repository at this point in the history
(I am sorry.)
  • Loading branch information
mederly committed Jul 4, 2022
1 parent 59353e6 commit 6e3fcb5
Showing 1 changed file with 11 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@

import com.evolveum.midpoint.schema.processor.ResourceSchema;

import com.evolveum.midpoint.util.exception.ConfigurationException;
import com.evolveum.midpoint.util.exception.ObjectNotFoundException;
import com.evolveum.midpoint.util.exception.SchemaException;

import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;

Expand Down Expand Up @@ -307,6 +311,13 @@ public void setSynchronizationSorterEvaluator(SynchronizationSorterEvaluator eva
@NotNull OperationResult result) {
return null;
}

@Override
public void expandConfigurationObject(
@NotNull PrismObject<? extends ObjectType> configurationObject,
@NotNull Task task,
@NotNull OperationResult result) throws SchemaException, ConfigurationException, ObjectNotFoundException {
}
};
}

Expand Down

0 comments on commit 6e3fcb5

Please sign in to comment.