Comparator ret = null;
try {
return (Comparator) comparator.newInstance();
} catch (InstantiationException IE) {
throw new LogException
("Exception while trying to load " + comparatorType +
" Comparator class: " + IE);
} catch (IllegalAccessException IAE) {
throw new LogException
("Exception while trying to load " + comparatorType +
" Comparator class: " + IAE);
}
}