Author: dbrosius Date: Tue Oct 15 06:55:44 2013 New Revision: 1532227 URL: http://svn.apache.org/r1532227 Log: remove dead parameter
Modified: commons/proper/bcel/trunk/src/main/java/org/apache/bcel/util/CodeHTML.java Modified: commons/proper/bcel/trunk/src/main/java/org/apache/bcel/util/CodeHTML.java URL: http://svn.apache.org/viewvc/commons/proper/bcel/trunk/src/main/java/org/apache/bcel/util/CodeHTML.java?rev=1532227&r1=1532226&r2=1532227&view=diff ============================================================================== --- commons/proper/bcel/trunk/src/main/java/org/apache/bcel/util/CodeHTML.java (original) +++ commons/proper/bcel/trunk/src/main/java/org/apache/bcel/util/CodeHTML.java Tue Oct 15 06:55:44 2013 @@ -365,7 +365,7 @@ final class CodeHTML implements org.apac * Find all target addresses in code, so that they can be marked * with <A NAME = ...>. Target addresses are kept in an BitSet object. */ - private final void findGotos( ByteSequence bytes, Method method, Code code ) throws IOException { + private final void findGotos( ByteSequence bytes, Code code ) throws IOException { int index; goto_set = new BitSet(bytes.available()); int opcode; @@ -535,7 +535,7 @@ final class CodeHTML implements org.apac // Print the byte code ByteSequence stream = new ByteSequence(code); stream.mark(stream.available()); - findGotos(stream, method, c); + findGotos(stream, c); stream.reset(); file.println("<TABLE BORDER=0><TR><TH ALIGN=LEFT>Byte<BR>offset</TH>" + "<TH ALIGN=LEFT>Instruction</TH><TH ALIGN=LEFT>Argument</TH>");