~ubuntu-branches/ubuntu/wily/libasm4-java/wily-proposed

« back to all changes in this revision

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

  • Committer: Package Import Robot
  • Author(s): Emmanuel Bourg
  • Date: 2015-05-26 23:27:59 UTC
  • mfrom: (1.1.4)
  • Revision ID: package-import@ubuntu.com-20150526232759-hra5uz1iiqj011hq
Tags: 5.0.4-1
* Team upload.
* New upstream release
  - Refreshed the patches
  - Updated the OSGi metadata in debian/osgi
  - Updated the version in debian/libasm4-java.poms
* Standards-Version updated to 3.9.6 (no changes)
* debian/copyright: Fixed the shortname of the BSD license

Show diffs side-by-side

added added

removed removed

Lines of Context:
337
337
 
338
338
    protected void addSVUID(long svuid) {
339
339
        FieldVisitor fv = super.visitField(Opcodes.ACC_FINAL
340
 
                + Opcodes.ACC_STATIC, "serialVersionUID", "J", null, new Long(
341
 
                svuid));
 
340
                + Opcodes.ACC_STATIC, "serialVersionUID", "J", null, svuid);
342
341
        if (fv != null) {
343
342
            fv.visitEnd();
344
343
        }