Skip to content

Commit

Permalink
ObjectFilterImpl#review: removed throws SchemaException
Browse files Browse the repository at this point in the history
  • Loading branch information
virgo47 committed Jun 19, 2020
1 parent b34376b commit eafe441
Showing 1 changed file with 2 additions and 3 deletions.
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2010-2018 Evolveum and contributors
* Copyright (c) 2010-2020 Evolveum and contributors
*
* This work is dual-licensed under the Apache License 2.0
* and European Union Public License. See LICENSE file for details.
Expand All @@ -10,7 +10,6 @@
import com.evolveum.midpoint.prism.PrismContext;
import com.evolveum.midpoint.prism.query.ObjectFilter;
import com.evolveum.midpoint.prism.query.Visitor;
import com.evolveum.midpoint.util.exception.SchemaException;

public abstract class ObjectFilterImpl implements ObjectFilter {

Expand All @@ -21,7 +20,7 @@ public void accept(Visitor visitor) {
}

@Override
public void revive(PrismContext prismContext) throws SchemaException {
public void revive(PrismContext prismContext) {
this.prismContext = prismContext;
}

Expand Down

0 comments on commit eafe441

Please sign in to comment.