Updating using GitHub API 2025-06-19-15:31

This commit is contained in:
nidhi-vm 2025-06-19 15:31:18 -04:00
parent eee0247315
commit 28225fed73

View file

@ -32,6 +32,10 @@ import java.util.Collection;
*/
public abstract class EntityUtils {
private EntityUtils() {
// private constructor to prevent instantiation
}
/**
* Look up the entity of the given class with the given id in the given collection.
* @param entities the collection to search
@ -50,4 +54,4 @@ public abstract class EntityUtils {
throw new ObjectRetrievalFailureException(entityClass, entityId);
}
}
}