Skip to content

Commit

Permalink
0001894: Make lookup transform column names case insensitive when use…
Browse files Browse the repository at this point in the history
…d as named parameters in sql
  • Loading branch information
chenson42 committed Aug 10, 2014
1 parent 07727db commit 412dd21
Showing 1 changed file with 6 additions and 1 deletion.
Expand Up @@ -47,12 +47,17 @@ public class LinkedCaseInsensitiveMap<V> extends LinkedHashMap<String, V> {
private final Locale locale;


public LinkedCaseInsensitiveMap(Map<String, ? extends V> values) {
this();
putAll(values);
}

/**
* Create a new LinkedCaseInsensitiveMap for the default Locale.
* @see java.lang.String#toLowerCase()
*/
public LinkedCaseInsensitiveMap() {
this(null);
this((Locale)null);
}

/**
Expand Down

0 comments on commit 412dd21

Please sign in to comment.