From 58088b20901e95a8be5dfc205ddc23c3b3f07283 Mon Sep 17 00:00:00 2001 From: Robin Bygrave Date: Fri, 31 Jul 2015 19:43:12 +1200 Subject: [PATCH] No effective change - code cleanup - remove unnecessary colon --- src/main/java/com/avaje/ebean/config/DataSourceConfig.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/com/avaje/ebean/config/DataSourceConfig.java b/src/main/java/com/avaje/ebean/config/DataSourceConfig.java index 4168a64f8..648138210 100644 --- a/src/main/java/com/avaje/ebean/config/DataSourceConfig.java +++ b/src/main/java/com/avaje/ebean/config/DataSourceConfig.java @@ -507,7 +507,7 @@ public class DataSourceConfig { String customProperties = properties.get("customProperties", null); if (customProperties != null && customProperties.length() > 0) { - this.customProperties = StringHelper.delimitedToMap(customProperties, ";", "=");; + this.customProperties = StringHelper.delimitedToMap(customProperties, ";", "="); } }