128129130131132133134135136137138
private void loadAnnotations(ClassDef cls) { int offset = cls.getAnnotationsOffset(); if (offset != 0) { try { new AnnotationsParser(this).parse(offset); } catch (DecodeException e) { LOG.error("Error parsing annotations in {}", this, e); } } }