Skip to content

Commit

Permalink
Fixed minor changes
Browse files Browse the repository at this point in the history
  • Loading branch information
MarcoBackman committed Sep 24, 2021
1 parent b9b9d23 commit e97b6c2
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
package src.datastructure;
package src.node;

import java.util.ArrayList;

class IntegerNode {
public class IntegerNode {
IntegerNode next = null;
ArrayList<Integer> list = new ArrayList<Integer>();

IntegerNode(ArrayList<Integer> list) {
public IntegerNode(ArrayList<Integer> list) {
this.list = list;
}

Expand Down

0 comments on commit e97b6c2

Please sign in to comment.