private boolean actorInProgram(String actor, String programText) {
try {
@SuppressWarnings("unused")
ActorSearcher searcher = new ActorSearcher(actor);
// currently not possible due to visibility issues
return searcher.matches(programText);
} catch (TvBrowserException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
return false;