From: Aron Roberts Date: Wed, 19 Mar 2014 23:42:32 +0000 (-0700) Subject: CSPACE-6349: Fixed yet another glaring typo in method call names. X-Git-Url: https://git.aero2k.de/?a=commitdiff_plain;h=ede7e8e260407b622e777c0b600de0021117f2e4;p=tmp%2Fjakarta-migration.git CSPACE-6349: Fixed yet another glaring typo in method call names. --- diff --git a/services/common/src/main/java/org/collectionspace/services/common/ServiceMain.java b/services/common/src/main/java/org/collectionspace/services/common/ServiceMain.java index bb9733022..f3993ba08 100644 --- a/services/common/src/main/java/org/collectionspace/services/common/ServiceMain.java +++ b/services/common/src/main/java/org/collectionspace/services/common/ServiceMain.java @@ -696,7 +696,7 @@ public class ServiceMain { if (basicDataSource == null) { return password; } - password = basicDataSource.getUsername(); + password = basicDataSource.getPassword(); return password; }