From 430b4eab763c1571375775cfed20323f4ea87eae Mon Sep 17 00:00:00 2001 From: moparisthebest Date: Wed, 29 Apr 2015 13:05:18 -0400 Subject: [PATCH] Make inListReplace string public --- .../src/main/java/com/moparisthebest/jdbc/ListQueryMapper.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/beehive-jdbc-mapper/src/main/java/com/moparisthebest/jdbc/ListQueryMapper.java b/beehive-jdbc-mapper/src/main/java/com/moparisthebest/jdbc/ListQueryMapper.java index 93ded3c..9fe3aff 100644 --- a/beehive-jdbc-mapper/src/main/java/com/moparisthebest/jdbc/ListQueryMapper.java +++ b/beehive-jdbc-mapper/src/main/java/com/moparisthebest/jdbc/ListQueryMapper.java @@ -27,7 +27,7 @@ public class ListQueryMapper extends QueryMapper { protected final QueryMapper delegate; protected final InList inList; - private static final String inListReplace = "{inList}"; + public static final String inListReplace = "{inList}"; private ListQueryMapper(Connection conn, String jndiName, QueryMapper delegate, ResultSetMapper cm, InList inList) { this.inList = inList;