No effective change - Code cleanup,remove unnecessary public modifier on interfaces

This commit is contained in:
Robin Bygrave
2015-07-31 13:05:22 +12:00
parent 8a3d9edd34
commit efe4e69ed1
7 changed files with 50 additions and 50 deletions
@@ -192,7 +192,7 @@ public class DefaultSqlRow implements SqlRow {
return map.keySet();
}
public void putAll(Map<? extends String, ? extends Object> t) {
public void putAll(Map<? extends String, ?> t) {
map.putAll(t);
}