diff --git a/src/java/com/samskivert/jdbc/depot/MultiKey.java b/src/java/com/samskivert/jdbc/depot/MultiKey.java index 838a821f..fba9ec19 100644 --- a/src/java/com/samskivert/jdbc/depot/MultiKey.java +++ b/src/java/com/samskivert/jdbc/depot/MultiKey.java @@ -84,13 +84,13 @@ public class MultiKey extends Where } } - // from QueryClause + @Override // from QueryClause public void addClasses (Collection> classSet) { classSet.add(_pClass); } - // from QueryClause + @Override // from Where public void appendClause (QueryBuilderContext query, StringBuilder builder) { builder.append(" where "); @@ -117,8 +117,8 @@ public class MultiKey extends Where builder.append(")"); } - // from QueryClause - public int bindExpressionArguments (PreparedStatement pstmt, int argIdx) + @Override // from Where + public int bindClauseArguments (PreparedStatement pstmt, int argIdx) throws SQLException { for (Map.Entry entry : _map.entrySet()) {