~ubuntu-branches/ubuntu/gutsy/proguard/gutsy

« back to all changes in this revision

Viewing changes to src/proguard/optimize/peephole/GotoReturnReplacer.java

  • Committer: Bazaar Package Importer
  • Author(s): Sam Clegg
  • Date: 2007-01-13 12:27:45 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20070113122745-9nq3v1qcdr02o8xd
Tags: 3.7-1
* New upstream release
* debian/control: make Arch: all (Closes: #360115)
* use "$@" rather then $* in shell startup scripts (Closes: #364962)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* $Id: GotoReturnReplacer.java,v 1.8 2005/07/31 18:50:05 eric Exp $
 
1
/* $Id: GotoReturnReplacer.java,v 1.8.2.2 2006/02/13 00:20:43 eric Exp $
2
2
 *
3
3
 * ProGuard -- shrinking, optimization, and obfuscation of Java class files.
4
4
 *
5
 
 * Copyright (c) 2002-2005 Eric Lafortune (eric@graphics.cornell.edu)
 
5
 * Copyright (c) 2002-2006 Eric Lafortune (eric@graphics.cornell.edu)
6
6
 *
7
7
 * This program is free software; you can redistribute it and/or modify it
8
8
 * under the terms of the GNU General Public License as published by the Free
100
100
                             new SimpleInstruction(targetInstruction.opcode);
101
101
                        codeAttrInfoEditor.replaceInstruction(offset,
102
102
                                                              returnInstruction);
103
 
        
 
103
 
104
104
                        // Visit the instruction, if required.
105
105
                        if (extraInstructionVisitor != null)
106
106
                        {