*/
private void retrieveCustomAttributes(final AttributeInfo attributeInfo, final List listToPutAttributesIn) {
if (attributeInfo.getName().startsWith(AttributeEnhancer.CUSTOM_ATTRIBUTE)) {
byte[] serializedAttribute = attributeInfo.get();
try {
Object attribute = new UnbrokenObjectInputStream(new ByteArrayInputStream(
serializedAttribute)).readObject();
listToPutAttributesIn.add(attribute);
} catch (Exception e) {
System.out.println("WARNING: could not retrieve annotation due to: " + e.toString());
// ignore