Skip to content

Commit

Permalink
made more stuff public
Browse files Browse the repository at this point in the history
  • Loading branch information
pranavgade20 committed May 3, 2021
1 parent e4bd5a2 commit 85dabbc
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@

public class CodeAttribute extends AttributeInfo {
// represents Code_attribute
short max_stack, max_locals, exception_table_length, attributes_count;
public short max_stack, max_locals, exception_table_length, attributes_count;
int code_length;
JavaBytecode code;
LinkedList<ExceptionTableEntry> exception_table;
LinkedList<AttributeInfo> attributes;
public JavaBytecode code;
public LinkedList<ExceptionTableEntry> exception_table;
public LinkedList<AttributeInfo> attributes;

CodeAttribute(AttributeInfo parent, DataInput classStream, Klass klass) throws IOException {
public CodeAttribute(AttributeInfo parent, DataInput classStream, Klass klass) throws IOException {
super(parent);
max_stack = classStream.readShort();
max_locals = classStream.readShort();
Expand Down

0 comments on commit 85dabbc

Please sign in to comment.