Idan Shaby has uploaded a new change for review. Change subject: core: Fix Wrong Access Modifier ......................................................................
core: Fix Wrong Access Modifier The method getExtraConfigDescriptors should have a protected access modifier rather than public. Change-Id: I08886d1dff24a1732e7614c6bdae616a4add123c Signed-off-by: Idan Shaby <[email protected]> --- M backend/manager/modules/bll/src/test/java/org/ovirt/engine/core/bll/AbstractQueryTest.java 1 file changed, 1 insertion(+), 1 deletion(-) git pull ssh://gerrit.ovirt.org:29418/ovirt-engine refs/changes/08/37208/1 diff --git a/backend/manager/modules/bll/src/test/java/org/ovirt/engine/core/bll/AbstractQueryTest.java b/backend/manager/modules/bll/src/test/java/org/ovirt/engine/core/bll/AbstractQueryTest.java index 65cfcad..a08f89f 100644 --- a/backend/manager/modules/bll/src/test/java/org/ovirt/engine/core/bll/AbstractQueryTest.java +++ b/backend/manager/modules/bll/src/test/java/org/ovirt/engine/core/bll/AbstractQueryTest.java @@ -50,7 +50,7 @@ } } - public <T> Set<MockConfigDescriptor<T>> getExtraConfigDescriptors() { + protected <T> Set<MockConfigDescriptor<T>> getExtraConfigDescriptors() { return Collections.emptySet(); } -- To view, visit http://gerrit.ovirt.org/37208 To unsubscribe, visit http://gerrit.ovirt.org/settings Gerrit-MessageType: newchange Gerrit-Change-Id: I08886d1dff24a1732e7614c6bdae616a4add123c Gerrit-PatchSet: 1 Gerrit-Project: ovirt-engine Gerrit-Branch: master Gerrit-Owner: Idan Shaby <[email protected]> _______________________________________________ Engine-patches mailing list [email protected] http://lists.ovirt.org/mailman/listinfo/engine-patches
