1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-23 22:52:11 +02:00

Added missing body to validate(Iterable).

This commit is contained in:
Pawel Piech 2010-10-18 19:34:14 +00:00
parent c6e0fac759
commit 3263f623ae

View file

@ -145,7 +145,8 @@ public abstract class Transaction<V> {
* See {@link #validate(RequestCache)}. This variant simply validates
* multiple cache objects.
*/
protected void validate(RequestCache<?> ... caches) throws InvalidCacheException, CoreException {
protected void validate(ICache<?> ... caches) throws InvalidCacheException, CoreException {
validate(caches);
}
/**