OPENJPA-6 fix line length, which must be <=120 for checkstyle

git-svn-id: https://svn.apache.org/repos/asf/openjpa/trunk@990231 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Donald Woods 2010-08-27 19:14:38 +00:00
parent 96ee7d32e9
commit f80e2398fa

View File

@ -823,11 +823,14 @@ public abstract class DelegatingDatabaseMetaData implements DatabaseMetaData {
return _metaData.getClientInfoProperties();
}
public ResultSet getFunctionColumns(String catalog, String schemaPattern, String functionNamePattern, String columnNamePattern) throws SQLException {
public ResultSet getFunctionColumns(String catalog, String schemaPattern,
String functionNamePattern, String columnNamePattern)
throws SQLException {
return _metaData.getFunctionColumns(catalog, schemaPattern, functionNamePattern, columnNamePattern);
}
public ResultSet getFunctions(String catalog, String schemaPattern, String functionNamePattern) throws SQLException {
public ResultSet getFunctions(String catalog, String schemaPattern,
String functionNamePattern) throws SQLException {
return _metaData.getFunctions(catalog, schemaPattern, functionNamePattern);
}