~ubuntu-branches/ubuntu/feisty/proguard/feisty

« back to all changes in this revision

Viewing changes to src/proguard/classfile/attribute/CodeAttrInfo.java

  • Committer: Bazaar Package Importer
  • Author(s): Sam Clegg
  • Date: 2005-11-13 09:42:59 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20051113094259-432zf4yyw4890mmn
Tags: 3.4-1
* New upstream release (Closes: #338355)
* debian/control: bump standards version
* debian/copyright: update FSF address
* increase java stack size for proguard and proguardgui

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* $Id: CodeAttrInfo.java,v 1.1 2004/10/10 21:10:04 eric Exp $
 
1
/* $Id: CodeAttrInfo.java,v 1.3 2005/06/11 13:13:15 eric Exp $
2
2
 *
3
3
 * ProGuard -- shrinking, optimization, and obfuscation of Java class files.
4
4
 *
5
5
 * Copyright (c) 1999      Mark Welsh (markw@retrologic.com)
6
 
 * Copyright (c) 2002-2004 Eric Lafortune (eric@graphics.cornell.edu)
 
6
 * Copyright (c) 2002-2005 Eric Lafortune (eric@graphics.cornell.edu)
7
7
 *
8
8
 * This library is free software; you can redistribute it and/or modify it
9
9
 * under the terms of the GNU Lesser General Public License as published by
22
22
package proguard.classfile.attribute;
23
23
 
24
24
 
 
25
import proguard.classfile.*;
25
26
import proguard.classfile.instruction.*;
26
 
import proguard.classfile.visitor.*;
27
 
import proguard.classfile.attribute.*;
28
 
import proguard.classfile.*;
29
27
 
30
28
import java.io.*;
31
29