Skip to content

Commit

Permalink
Fix bug in Array data
Browse files Browse the repository at this point in the history
  • Loading branch information
fernandezseb committed Dec 24, 2023
1 parent 810c69c commit 73977c0
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/VM/JavaHeap.h
Original file line number Diff line number Diff line change
Expand Up @@ -69,8 +69,6 @@ class ClassObject : public Object

class Array : public Reference {
public:
Array() : Reference(ARRAY), arrayType(AT_UNDEFINED), length(0l), data(nullptr) {
};
ArrayType arrayType;
uint64_t length;
u1* data;
Expand Down

0 comments on commit 73977c0

Please sign in to comment.