try {
method = cls.getMethod("removeAllItems", null);
}
catch (NoSuchMethodException e2) {
// NOTE: This should not happen! -Ac
augs = new AugmentationsImpl();
}
}
if (method != null) {
try {
method.invoke(augs, null);
}
catch (IllegalAccessException e) {
// NOTE: This should not happen! -Ac
augs = new AugmentationsImpl();
}
catch (InvocationTargetException e) {
// NOTE: This should not happen! -Ac
augs = new AugmentationsImpl();
}
}
augs.putItem(AUGMENTATIONS, SYNTHESIZED_ITEM);
}
return augs;