No effective change - code cleanup - remove unused - methods

This commit is contained in:
Robin Bygrave
2015-07-31 22:06:34 +12:00
parent 6dc21ce69b
commit 1ce84ec343
@@ -40,26 +40,6 @@ public class DefaultSqlRow implements SqlRow {
*/
final Map<String, Object> map;
/**
* Create with a specific Map implementation.
* <p>
* The default Map implementation is LinkedHashMap.
* </p>
*/
public DefaultSqlRow(Map<String, Object> map, String dbTrueValue) {
this.map = map;
this.dbTrueValue = dbTrueValue;
}
/**
* Create a new MapBean based on a LinkedHashMap with default
* initialCapacity (of 16).
*/
public DefaultSqlRow(String dbTrueValue) {
this.map = new LinkedHashMap<String, Object>();
this.dbTrueValue = dbTrueValue;
}
/**
* Create with an initialCapacity and loadFactor.
* <p>