public static void removeLock(String id, String lockId) {
    org.sakaiproject.content.api.ContentHostingService service = getInstance();
    if (service == null) return;

    service.removeLock(id, lockId);
  }