From 253bebb9bb693a480dac5148ac0cd8638c4d68b7 Mon Sep 17 00:00:00 2001 From: Robin Bygrave Date: Thu, 6 Aug 2015 12:27:03 +1200 Subject: [PATCH] No effective change - camel case variable names --- .../ebean/config/dbplatform/Oracle10DbEncrypt.java | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/main/java/com/avaje/ebean/config/dbplatform/Oracle10DbEncrypt.java b/src/main/java/com/avaje/ebean/config/dbplatform/Oracle10DbEncrypt.java index 9cb458fe4..aa0a36500 100644 --- a/src/main/java/com/avaje/ebean/config/dbplatform/Oracle10DbEncrypt.java +++ b/src/main/java/com/avaje/ebean/config/dbplatform/Oracle10DbEncrypt.java @@ -55,13 +55,13 @@ public class Oracle10DbEncrypt extends AbstractDbEncrypt { /** * Constructs the Oracle10DbEncrypt specifying encrypt and decrypt stored procedures. * - * @param encryptfunction the encrypt stored procedure - * @param decryptfunction the decrypt stored procedure + * @param encryptFunction the encrypt stored procedure + * @param decryptFunction the decrypt stored procedure */ - public Oracle10DbEncrypt(String encryptfunction, String decryptfunction) { + public Oracle10DbEncrypt(String encryptFunction, String decryptFunction) { - this.varcharEncryptFunction = new OraVarcharFunction(encryptfunction, decryptfunction); - this.dateEncryptFunction = new OraDateFunction(encryptfunction, decryptfunction); + this.varcharEncryptFunction = new OraVarcharFunction(encryptFunction, decryptFunction); + this.dateEncryptFunction = new OraDateFunction(encryptFunction, decryptFunction); } /**