~ubuntu-branches/ubuntu/precise/asm3/precise

« back to all changes in this revision

Viewing changes to src/org/objectweb/asm/commons/RemappingAnnotationAdapter.java

  • Committer: Package Import Robot
  • Author(s): Torsten Werner
  • Date: 2011-09-12 13:50:38 UTC
  • mfrom: (3.2.5 sid)
  • Revision ID: package-import@ubuntu.com-20110912135038-1g97tsp2uopphgm7
Tags: 3.3.2-1
* Team upload.
* New upstream release.
* Change debian/watch to point to upstream's SVN repository. Add
  debian/orig-tar.sh.
* Remove all prebuilt jar files from orig tarball.
* Install asm-debug-all.jar.
* Do no longer install symlinks from asm3-all.jar to the individual jars.
  Install the real files instead.
* Use upstream provided pom files instead of shipping them in the debian
  directory.

Show diffs side-by-side

added added

removed removed

Lines of Context:
53
53
    }
54
54
 
55
55
    public void visitEnum(String name, String desc, String value) {
56
 
        av.visitEnum(name, renamer.mapType(desc), value);
 
56
        av.visitEnum(name, renamer.mapDesc(desc), value);
57
57
    }
58
58
 
59
59
    public AnnotationVisitor visitAnnotation(String name, String desc) {
60
 
        AnnotationVisitor v = av.visitAnnotation(name, renamer.mapType(desc));
 
60
        AnnotationVisitor v = av.visitAnnotation(name, renamer.mapDesc(desc));
61
61
        return v == null ? null : (v == av
62
62
                ? this
63
63
                : new RemappingAnnotationAdapter(v, renamer));