Allon Mureinik has uploaded a new change for review. Change subject: core: Synthetic emulators EcryptionUtilsTest ......................................................................
core: Synthetic emulators EcryptionUtilsTest Changed members visibility from private to protected to solve the synthetic emulators warning. This may slightly increase performance, but I doubt it will be noticeable. Change-Id: I5d17aa584e4b8c1d858d74c155265a9f30cf86d0 Signed-off-by: Allon Mureinik <[email protected]> --- M backend/manager/modules/utils/src/test/java/org/ovirt/engine/core/utils/crypt/EncryptionUtilsTest.java 1 file changed, 3 insertions(+), 3 deletions(-) git pull ssh://gerrit.ovirt.org:29418/ovirt-engine refs/changes/25/14425/1 diff --git a/backend/manager/modules/utils/src/test/java/org/ovirt/engine/core/utils/crypt/EncryptionUtilsTest.java b/backend/manager/modules/utils/src/test/java/org/ovirt/engine/core/utils/crypt/EncryptionUtilsTest.java index 7047617..7af4745 100644 --- a/backend/manager/modules/utils/src/test/java/org/ovirt/engine/core/utils/crypt/EncryptionUtilsTest.java +++ b/backend/manager/modules/utils/src/test/java/org/ovirt/engine/core/utils/crypt/EncryptionUtilsTest.java @@ -16,9 +16,9 @@ public class EncryptionUtilsTest { - private static String keyStoreURL; - private static String keyStorePass = "NoSoup4U"; - private static String certAlias = "1"; + protected static String keyStoreURL; + protected final static String keyStorePass = "NoSoup4U"; + protected final static String certAlias = "1"; @Before public void before() throws UnsupportedEncodingException { -- To view, visit http://gerrit.ovirt.org/14425 To unsubscribe, visit http://gerrit.ovirt.org/settings Gerrit-MessageType: newchange Gerrit-Change-Id: I5d17aa584e4b8c1d858d74c155265a9f30cf86d0 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
