org.sql2o.converters.ConverterBase Maven / Gradle / Ivy
package org.sql2o.converters;
/**
* @author [email protected]
* @since 4/6/14
*/
abstract class ConverterBase implements Converter {
public Object toDatabaseParam(T val) {
return val;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy