Allon Mureinik has uploaded a new change for review. Change subject: core: AsyncTaskFactory: made logger final ......................................................................
core: AsyncTaskFactory: made logger final Added the "final" modifier to the logger to adhere to proper java coding conventions. Change-Id: I59c990ee1926052682e56a77b5c43f2626111ad2 Signed-off-by: Allon Mureinik <[email protected]> --- M backend/manager/modules/bll/src/main/java/org/ovirt/engine/core/bll/AsyncTaskFactory.java 1 file changed, 1 insertion(+), 1 deletion(-) git pull ssh://gerrit.ovirt.org:29418/ovirt-engine refs/changes/23/7623/1 diff --git a/backend/manager/modules/bll/src/main/java/org/ovirt/engine/core/bll/AsyncTaskFactory.java b/backend/manager/modules/bll/src/main/java/org/ovirt/engine/core/bll/AsyncTaskFactory.java index ecd8c8e..3847f29 100644 --- a/backend/manager/modules/bll/src/main/java/org/ovirt/engine/core/bll/AsyncTaskFactory.java +++ b/backend/manager/modules/bll/src/main/java/org/ovirt/engine/core/bll/AsyncTaskFactory.java @@ -74,5 +74,5 @@ } } - private static Log log = LogFactory.getLog(AsyncTaskFactory.class); + private static final Log log = LogFactory.getLog(AsyncTaskFactory.class); } -- To view, visit http://gerrit.ovirt.org/7623 To unsubscribe, visit http://gerrit.ovirt.org/settings Gerrit-MessageType: newchange Gerrit-Change-Id: I59c990ee1926052682e56a77b5c43f2626111ad2 Gerrit-PatchSet: 1 Gerrit-Project: ovirt-engine Gerrit-Branch: master Gerrit-Owner: Allon Mureinik <[email protected]> _______________________________________________ Engine-patches mailing list [email protected] http://lists.ovirt.org/mailman/listinfo/engine-patches
