(Object... primaryKeys)
| 77 | } |
| 78 | |
| 79 | private void checkKeys(Object... primaryKeys) { |
| 80 | if (primaryKeys.length != primaryKeyNames.length) { |
| 81 | throw new IllegalArgumentException("Expected " + primaryKeyNames.length + " primary keys, got " + primaryKeys.length); |
| 82 | } |
| 83 | } |
| 84 | |
| 85 | /** |
| 86 | * Deletes a row from the table by its primary keys, and removes it from the cache. |